/* Auth Page Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background-color: #f3f4f6;
}

.auth-card {
    width: 100%;
    max-width: 28rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.auth-logo {
    width: 5rem;
    height: 5rem;
    fill: currentColor;
    color: #6b7280;
}

.auth-form {
    margin-top: 1rem;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.form-input {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #111827;
    background-color: white;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.btn-primary {
    color: white;
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
}

.btn-secondary {
    color: #374151;
    background-color: white;
    border-color: #d1d5db;
}

.btn-secondary:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.auth-link {
    color: #3b82f6;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.auth-link:hover {
    color: #2563eb;
}

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

.success-message {
    color: #059669;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    .auth-container {
        background-color: #111827;
    }
    
    .auth-card {
        background-color: #1f2937;
        color: #f9fafb;
    }
    
    .form-label {
        color: #f9fafb;
    }
    
    .form-input {
        background-color: #374151;
        border-color: #4b5563;
        color: #f9fafb;
    }
    
    .form-input:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
    
    .btn-secondary {
        background-color: #374151;
        border-color: #4b5563;
        color: #f9fafb;
    }
    
    .btn-secondary:hover {
        background-color: #4b5563;
        border-color: #6b7280;
    }
}

/* Responsive styles */
@media (min-width: 640px) {
    .auth-container {
        padding-top: 0;
    }
}