.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at 50% 0%, #103138 0%, #041013 45%, #010405 100%);
}

.auth-layout {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    z-index: 5;
}

.auth-header {
    margin-bottom: 40px;
    animation: authFadeIn 0.8s ease both;
}

.auth-card {
    background: rgba(10, 45, 51, 0.4);
    border: 1px solid rgba(216, 169, 74, 0.25);
    border-radius: 32px;
    width: 100%;
    max-width: 480px;
    padding: 48px 40px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    animation: authSlideUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes authSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-card__title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    text-align: center;
}

.auth-card__subtitle {
    font-size: 16px;
    color: var(--lp-muted);
    text-align: center;
    margin-bottom: 40px;
}

.auth-footer {
    margin-top: 40px;
    color: var(--lp-muted);
    font-size: 14px;
    opacity: 0.7;
    animation: authFadeIn 1s ease both 0.4s;
}

/* Reusing modal styles for form consistency */
.auth-form-group {
    margin-bottom: 24px;
}

.auth-label {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.auth-input {
    width: 100%;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 0 20px;
    font: inherit;
    outline: none;
    transition: 0.3s;
}

.auth-input:focus {
    border-color: var(--lp-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(216, 169, 74, 0.15);
}

.auth-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d8a94a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    background-size: 18px;
    padding-left: 45px !important;
}

.auth-btn {
    width: 100%;
    margin-top: 10px;
}

.auth-links {
    margin-top: 32px;
    text-align: center;
    font-size: 14px;
    color: var(--lp-muted);
}

.auth-links a {
    color: var(--lp-gold);
    text-decoration: none;
    font-weight: 700;
    margin: 0 4px;
}

.auth-links a:hover {
    text-decoration: underline;
}

.auth-alert {
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 24px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-alert--danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.auth-alert--success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 32px 24px;
        border-radius: 24px;
    }
}
