body {
    background: linear-gradient(135deg, #6E8EFB, #A777E3);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}
.login-container {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    border: 2px solid black; /* Black border */
    box-shadow: 0 8px 25px rgba(0,0,0,0.5); /* More pronounced shadow */
    transition: transform 0.3s ease-in-out;
}
.login-header h2 {
    margin-bottom: 30px;
    text-align: center;
}
.login-form button {
    background-color: #4E9F3D;
    border: none;
}
.login-form button:hover {
    background-color: #D8E9A8;
    color: #000;
}
.login-links a {
    color: #007bff;
}
.login-logo {
    display: block;
    margin: 0 auto 20px auto;
    width: 120px;
}

/* Responsiveness */
@media (max-width: 576px) {
    .login-container {
        padding: 20px;
        border: 1px solid black; /* Adjust border for smaller screens */
        box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* Adjust shadow for smaller screens */
    }
}

/* Hover effect for the container */
.login-container:hover {
    transform: scale(1.02);
}