:root {
    --text-color: #000000;
    --background-color: #f8f9fa;
    --accent-color:#263343;
    --text-unhover-color: #5e5e5e;
    --underbar-unhover-color: #c7c7c7;
    --embiome-color: #0c9fdc;
    --text-color-white:#f8f9fa;
    --sidebar--color: #94CBFA;
    --error: #ff0000;
    --danger: #a70000;
    --danger-hover: #ca7474;
    --danger-active: #8d3636;
    --embiome-color-hover: #59c7f7;
    --embiome-color-active: #005c83;
    --progress: #dcb60c;
    --finish: #0cdc40;
    --finish-darker: #07611c;
    --primary: #0069d9;
    --wgs: #fac249;
    --meta: #df80f7;
    --comp: #e49296;
    --progress-per: #76c7c0;
}

.auth__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50vh;
    margin-top: 100px;
}

.auth__policyAgreement,
.auth__signInBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    background: var(--text-color-white);
    box-shadow : 10px 10px 10px 1px gray;
    margin-top: 20px;
    transition: height 0.3s ease-in-out;
}
.auth__signUpBox {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    background: var(--text-color-white);
    box-shadow : 10px 10px 10px 1px gray;
    margin-top: 20px;
    transition: height 0.3s ease-in-out;
}

.headBox {
    background-color: var(--embiome-color);
    color: var(--text-color-white);
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    text-align: center;
    padding: 10px;
}

.auth__formBox {
    padding: 20px;
    width: 100%;
    margin-bottom: 15px;
}

.auth__formBox > h2 {
    text-align: center;
    margin-top: 8px;
}

.auth__formBox > button {
    background: var(--embiome-color);
    color: var(--text-color-white);
    width: 100%;
    border: none;
    border-radius: 5px;
    padding: 4px 12px;
    margin: 4px;
}

.auth__formBox > button:hover {
    background: var(--accent-color);
    color: var(--text-color-white);
    transition: 0.3s ease all 0s ;
}

.auth__formBox > button:active {
    background: var(--text-color);
    color: var(--text-color-white);
}

.form-group {
    margin: 4px;
    width: 100%;
    margin-bottom: 15px;
}

.form-group > label {
    width: 100px;
}

.form-group > input {
    width : 100%;
    padding: 4px;
    border: 1px solid var(--text-unhover-color);
    border-radius: 5px;
}

.validationMessage {
    display: block;
    margin-top: 5px;
}

.validationMessage.correct {
    color: var(--finish);
}

.validationMessage.invalid {
    color: var(--error);
}


#checkEmailBtn {
    border: none;
    background-color: none;
}

#checkEmailBtn:hover {
    background-color: none;
    color: var(--text-color-white);
    transition: 0.3s ease all 0s ;
}

#checkEmailBtn:active {
    background-color: none;
    color: var(--text-color);
}

.auth__forgotBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--underbar-unhover-color);
    border-radius: 10px;
    box-shadow: 0px 0px 10px 1px gray;
}

.auth__forgotBox > h3 {
    text-align: center;
    color: var(--text-color-white);
    background-color: var(--embiome-color);
    border-radius: 10px 10px 0px 0px;
    width: 100%;
    padding: 10px;
}

.forgotPWbox,
.codeSection,
.resetPasswordSection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.forgotPWbox > label,
.codeSection > label,
.resetPasswordSection > label {
    margin: 10px;
    font-family: 'AppleSDGothicNeoB';
    text-align: center;
    justify-content: center;
}

.forgotPWbox > input,
.codeSection > input,
.resetPasswordSection > input {
    margin: 10px;
    padding: 4px;
    border: 1px solid var(--text-unhover-color);
    border-radius: 5px;
    width: 100%;
    max-width: 400px;
    justify-content: center;
    align-items: center;
}

.forgotPWbox > button,
.codeSection > button,
.resetPasswordSection > button {
    margin: 10px;
    padding: 4px 12px;
    width: 100%;
    max-width: 400px;
    border: none;
    border-radius: 5px;
    background: var(--embiome-color);
    color: var(--text-color-white);
    justify-content: center;
    align-items: center;
}

.error-message {
    color: var(--error-fontcolor);
    font-family: 'AppleSDGothicNeoB';
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: var(--comp);
    width: 400px;
    padding: 10px;
    border-radius: 5px;
    margin: 10px;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.terms-content {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    line-height: 1.1;
  }