/* ===== AUTH PAGES ===== */
.auth-page {
    min-height: 100vh;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 500px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-logo .logo-icon {
    width: 64px;
    height: 64px;
    background-color: #0d6efd;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.75rem;
    color: white;
}

.auth-logo h1 {
    color: #212529;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.auth-logo p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.auth-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.auth-captcha {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.captcha-img {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    cursor: pointer;
    display: block;
    transition: opacity 0.2s;
}

.captcha-img:hover {
    opacity: 0.85;
}

.phone-flag-addon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.btn-auth {
    width: 100%;
    padding: 0.625rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
}

.auth-footer {
    text-align: center;
    margin-top: 1.25rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.auth-footer a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}
