/**
 * Distrito Enduro V2 - Auth Pages Styles (Restored Original Look)
 * Flat, High Contrast, Moto Aesthetic
 */

body {
    background-color: #000;
    font-family: 'Inter', sans-serif;
    color: #fff;
    margin: 0;
}

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    /* Fallback */
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding: 2rem;
}

/* Optional: Subtle grid texture if original had it, otherwise plain black */
.auth-container::before {
    content: none;
}

.auth-box {
    width: 100%;
    max-width: 400px;
    background: #000;
    border: 1px solid #333;
    border-radius: 0;
    /* Sharp corners like original */
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    display: block;
    font-family: 'Teko', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.auth-logo span {
    color: #ff6600;
}

.auth-subtitle {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-title {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
    .auth-title {
        font-size: 1.5rem;
    }
}

/* Auth Forms */
.auth-form .form-group {
    margin-bottom: 1.25rem;
}

.auth-form label {
    display: block;
    color: var(--color-text);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.auth-form input {
    width: 100%;
    padding: 1rem;
    background: #000;
    border: 1px solid #333;
    border-radius: var(--border-radius);
    color: #fff;
    font-family: var(--font-main);
    transition: var(--transition-fast);
}

.auth-form input:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

.btn-block {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 1rem;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--color-primary);
    font-weight: 600;
}

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

@media (max-width: 480px) {
    .auth-container {
        padding: 1rem;
    }

    .auth-box {
        padding: 1.5rem;
    }

    .auth-logo {
        font-size: 2rem;
        margin-bottom: 0.2rem;
    }

    .auth-subtitle {
        font-size: 0.7rem;
    }
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.auth-tab-btn {
    flex: 1;
    background: none;
    padding: 1rem;
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.auth-tab-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}