﻿.auth-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #354D65 0%, #1F2A3D 50%, #1D9E75 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito Sans', sans-serif;
    padding: 20px;
}

.auth-wrapper {
    width: 100%;
    max-width: 480px;
}

.auth-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 48px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.auth-logo {
    font-family: 'Nunito', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #354D65;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.auth-title {
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1E1D1A;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.auth-sub {
    font-size: 14px;
    color: #8C8880;
    margin-bottom: 28px;
    line-height: 1.5;
}

.auth-field {
    margin-bottom: 18px;
}

.auth-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #4A4843;
    margin-bottom: 6px;
}

.auth-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #E6E4DF;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    color: #1E1D1A;
    background: #FFFFFF;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}

    .auth-input:focus {
        border-color: #2FA882;
        box-shadow: 0 0 0 3px rgba(47,168,130,0.12);
    }

.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
}

.auth-check {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #4A4843;
    cursor: pointer;
}

.auth-link {
    font-size: 13px;
    color: #354D65;
    font-weight: 600;
    text-decoration: none;
}

    .auth-link:hover {
        color: #0D4A38;
        text-decoration: underline;
    }

.auth-btn {
    width: 100%;
    padding: 12px;
    background: var(--teal-500);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    margin-bottom: 20px;
}

    .auth-btn:hover {
        background: var(--teal-700);
        transform: translateY(-1px);
    }

    .auth-btn:active {
        transform: translateY(0);
    }

.auth-footer-links {
    text-align: center;
    font-size: 13px;
    color: #8C8880;
}

.auth-error {
    background: #FEF0F0;
    border: 1px solid #FACECE;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #A83030;
    margin-bottom: 16px;
}

.auth-validation {
    font-size: 12px;
    color: #A83030;
    margin-top: 4px;
    display: block;
}

.code-input {
    font-size: 1.5rem;
    letter-spacing: 6px;
    text-align: center;
    font-weight: 600;
}