h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--white);
}

body {
    background-color: var(--main-bg);
    color: var(--main-text);
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.2;
}

#authForm {
    background-color: var(--secondary-bg);
    color: var(--main-text);
    border-radius: 10px;
    box-shadow: 0px 4px 10px var(--shadow-main);
    width: 300px;
    max-width: 90%;
    padding: 20px;
    margin: 0 auto;
}

#loginEmail,
#verificationCode {
    background-color: var(--main-bg);
    color: var(--main-text);
    border: 1px solid var(--white);
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    margin: 10px 0;
    width: 250px;
    box-sizing: border-box;
    line-height: 1.5;
}

.button-container {
    text-align: center;
    margin-top: 10px;
}

#codeSection {
    margin-top: 15px;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-size: 14px;
    color: #ffffff;
}

.helper-text {
    font-size: 12px;
    color: #a9a9a9;
    text-align: center;
    margin-top: 10px;
}
.code-notification {
    color: #4caf50;
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 15px;
    display: none;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #dba832;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.auth-logo {
    width: 60%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInMoveDown 1.5s forwards;
}

.logo-container {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

@keyframes fadeInMoveDown {
    0% {
        opacity: 0;
        transform: translateY(-25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
