﻿
.auth-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.auth-card {
    width: 100%;
    max-width: 520px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 32px;
    backdrop-filter: blur(14px);
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 24px;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: rgba(255,255,255,.62);
    margin-bottom: 28px;
}

.auth-links {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

    .auth-links a {
        color: rgba(255,255,255,.78);
        text-decoration: none;
    }

        .auth-links a:hover {
            color: #fff;
        }

.profile-label {
    display: block;
    margin-bottom: 12px;
    color: rgba(255,255,255,.58);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .01em;
}

.profile-input {
    height: 72px !important;
    border-radius: 24px !important;
    background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.04)) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    color: #fff !important;
    font-size: 1.02rem;
    padding: 1rem 1.25rem !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 8px 30px rgba(0,0,0,.12);
}

    .profile-input:focus {
        background: linear-gradient(90deg, rgba(255,255,255,.10), rgba(255,255,255,.05)) !important;
        border-color: rgba(138,124,255,.38) !important;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 0 0 .2rem rgba(109,94,246,.12) !important;
    }

.brand-mark {
    width: 14px;
    height: 14px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--primary), var(--primary2));
    box-shadow: 0 12px 30px rgba(109,94,246,.35);
}

@media (max-width: 575.98px) {
    .auth-card {
        padding: 24px;
        border-radius: 22px;
    }

    .auth-title {
        font-size: 1.7rem;
    }

    .profile-input {
        height: 66px !important;
        border-radius: 20px !important;
    }
}
