.auth-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    background: #0f1419;
    border: 2px solid #4b5563;
    color: white;
    font-size: 16px;
    transition: all 0.2s ease;
}

.auth-input:focus {
    outline: none;
    background: #111827;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.auth-input:hover {
    border-color: #6b7280;
}

.auth-input::placeholder {
    color: #9ca3af;
}

.auth-button {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
}

.auth-button:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.auth-container {
    max-width: 28rem;
    margin: 0 auto;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-field {
    display: flex;
    flex-direction: column;
}

.auth-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.auth-error {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #fca5a5;
}

.auth-link {
    color: var(--brand);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-link:hover {
    text-decoration: underline;
}

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

.auth-header-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--brand);
}

.auth-header-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.auth-header-subtitle {
    color: #9ca3af;
}

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

.auth-footer-text {
    color: #9ca3af;
}

@media (max-width: 768px) {
    .auth-container {
        max-width: none;
        margin: 0;
        padding: 1rem;
    }
    
    .auth-form {
        gap: 1.25rem;
    }
    
    .auth-button,
    .auth-input {
        padding: 14px 16px;
        font-size: 16px;
    }
}

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