/**
 * AdTrax Invoicing - Auth UI
 * App-like Responsive Layout (2025 refresh)
 * Copyright (c) 2003 Jeffery Paris
 */

.auth-page {
    background: radial-gradient(1200px 600px at 20% 20%, rgba(0, 122, 255, 0.14) 0%, rgba(0, 122, 255, 0.00) 60%),
                radial-gradient(900px 500px at 90% 0%, rgba(22, 163, 74, 0.10) 0%, rgba(22, 163, 74, 0.00) 55%),
                linear-gradient(180deg, #0B1224 0%, #0F172A 100%);
    min-height: 100vh;
}

.auth-container {
    min-height: 100vh;
    padding: 26px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.auth-header {
    padding: 18px 18px 14px 18px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-logo .logo-text {
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: 16px;
    color: rgba(15, 23, 42, 0.92);
}

.auth-title {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: rgba(15, 23, 42, 0.94);
    margin: 0;
}

.auth-subtitle {
    margin-top: 4px;
    color: rgba(15, 23, 42, 0.62);
    font-size: 13px;
}

.auth-body {
    padding: 18px;
}

.auth-footer {
    padding: 14px 18px 18px 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.10);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.70);
    font-size: 12px;
    margin-top: 18px;
}

.auth-copyright p {
    margin: 0;
}

/* Auth-specific helpers */
.auth-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.auth-links a {
    font-weight: 700;
    font-size: 14px;
    color: rgba(15, 23, 42, 0.86);
}

.auth-links a:hover {
    color: rgba(0, 122, 255, 0.95);
    text-decoration: none;
}

@media (max-width: 420px) {
    .auth-card {
        border-radius: 16px;
    }

    .auth-title {
        font-size: 17px;
    }
}
