/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #007acc, #003366);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Login Container */
.login-container {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeIn 0.8s ease-in-out;
}

/* Header */
.login-container h2 {
    margin-bottom: 20px;
    color: #003366;
    font-size: 24px;
    font-weight: bold;
}

/* Input Fields */
.login-container input[type="email"],
.login-container input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #007acc;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}

.login-container input:focus {
    border-color: #003366;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 102, 204, 0.5);
}

/* Login Button */
.login-container button {
    width: 100%;
    padding: 12px;
    background: #007acc;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.login-container button:hover {
    background: #003366;
    transform: scale(1.05);
}

/* Error Message */
.error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
