/* Login Page Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f3f4f6;
}

/* Custom styles for the login form */
.login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Logo styling */
.login-logo {
    width: 150px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
}

/* Input field focus states */
input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease-in-out;
}

/* Button hover effect */
button[type="submit"] {
    transition: background-color 0.2s ease-in-out;
}

button[type="submit"]:hover {
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-container {
        margin: 1rem;
        padding: 1.5rem;
    }
}
