/* common styles */
* {
    margin: 0;
    padding: 0;
    font-family: "Josefin Sans", sans-serif;
}

html {
    font-size: 62.5%;
}

body {
    background-color: #fbe7e7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
/* end of common styles */
/* find ID page */
.find-account-page {
    width: 100%;
    max-width: 80%;
    background-color: #ffffff;
    padding: 2rem;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: left;
    align-items: left;
    height: 90vh;
    
}

/* section 스타일 */
h2 {
    font-size: 2.4rem;
    color: #333;
    margin-bottom: 1rem;
    margin-top: 7rem;
    margin-left: 10rem;
}

p {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 2rem;
    margin-left: 10rem;
    margin-top: 1rem;
}

/* form */
form p {
    margin-bottom: 1.5rem;
    margin-top: 4rem;
    
}

label {
    display: block;
    text-align: left;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #555;
}

input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1.6rem;
}

/* botton */
button {
    margin-left: 10rem;
    width: 85%;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    cursor: pointer;
    margin-top: 1rem;
    color: #fff;
    transition: background-color 0.3s ease;
}

.find-password-btn {
    background-color: #990000;
}

.find-password-btn:hover {
    background-color: #990000;
}



/* backlink */
.back-link-container {
    margin-top: 2rem;
}

.back-link {
    font-size: 1.4rem;
    color:  #990000;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}