.login_field {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
@media (max-width: 767px) {
    .login_field {
        gap: 20px;
    }
}

.login_field .header_section {
    text-align: center;
}
.register_field .header_section {
    text-align: left;

    & p {
        font-size: 26px;
        font-weight: 500;
        line-height: 36.4px;
    }
}
@media (max-width: 767px) {
    .register_field .header_section p {
        font-size: 22px;
        line-height: 30.8px;
    }
}

.other_part { 
    display: flex; 
    justify-content: space-between; 
    width: 100%; 
}

.data_group .forget_password_part {
    align-self: flex-end;
    
    & a {
        font-family: Noto Sans TC;
        font-size: 16px;
        font-weight: 400;
        line-height: 22.4px;
        letter-spacing: 0.02em;
        color: #223B86;
        text-decoration: underline;
    }
}

.register_field {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 12px;
    border: 1px;
    opacity: 0px;
    background-color: #FAFAFA;
}

.customer_select_field.phone_code {
    width: 81px;
}

@media (max-width: 767px) {
    .form_field {
        gap: 36px;
    }

    .media_btn p {
        font-size: 16px;
        line-height: 22.4px;
    }

    .register_field {
        padding: 16px;

        .media_btn {
            width: 90px;
            padding: 10px 24px;
        }
    }
}

.send_verify_field {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 460px;

    .send_verify_message {
        position: relative;
        opacity: 0;
        border-radius: 4px;
        padding: 8px 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0px 2px 8px 0px #00000040;
        background-color: #E4FBDC;

        & p {
            font-family: Noto Sans TC;
            font-weight: 500;
            font-size: 16px;
            line-height: 21.79px;
            color: #228300;
        }

        .send_verify_close {
            position: absolute;
            top: 9px;
            right: 10px;
        }

        &.invalid_link {
            background-color:#FFE6E6; 

            & p {
                color: #CC0000;
            }
        }
    }
    .hidden {
        display: none;
    }
}

@media (max-width: 767px) {
    .send_verify_field {
        width: 358px;

        .send_verify_message p {
            font-size: 13px;
            line-height: 17.71px;
        }
    }
}
.send_verify_message.to_fadeIn {
    animation: fadeIn 0.5s linear 0.5s forwards;
}
.send_verify_message.to_fadeOut {
    animation: fadeOut 0.5s linear 0.5s forwards
}

@keyframes fadeIn {
    from {
        opacity: 0;
        top: -24px;
    }
    to {
        opacity: 1;
        top: 0px;
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
        top: 0px;
    }
    to {
        opacity: 0;
        top: -24px;
    }
}

.error_message_field {
    display: flex;
    
    & p {

        font-family: Noto Sans TC;
        font-weight: 400;
        font-size: 14px;
        line-height: 22.4px;
        letter-spacing: 0.08em;
        margin-left: 6px;
    }

    &.fail {
        color: #DA0606;
    }
    &.warn {
        color: #838383
    }
}