/* Custom styles for admin panel */

/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f9fafb;
}

/* Form elements */
input[type="email"],
input[type="password"] {
    transition: all 0.2s ease-in-out;
}

input[type="email"]:focus,
input[type="password"]:focus {
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
    border-color: #4f46e5;
}

/* Buttons */
button[type="submit"] {
    transition: all 0.2s ease-in-out;
}

button[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Error messages */
.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Language selector */
.language-selector {
    z-index: 50;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .login-container {
        padding: 1rem;
    }
    
    .language-selector {
        top: 1rem;
        right: 1rem;
    }
}
