/* Auth Pages Styles */

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
}

.auth-container {
    width: 100%;
    max-width: 400px;
}

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

.auth-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.auth-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.02);
}

.form-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    min-height: 1.2rem;
}

.auth-form .btn {
    margin-top: 0.5rem;
}

.auth-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-footer {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.auth-terms {
    text-align: center;
}

.auth-terms p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    line-height: 1.6;
}

.auth-terms a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.auth-terms a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 480px) {
    .auth-section {
        padding: 6rem 1rem 2rem;
    }

    .auth-form {
        padding: 1.5rem;
    }
}
