.login-page {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #1e3c72, #2a5298);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.login-card h2 {
    text-align: center;
    margin-bottom: 30px;
}

.back-home {
    text-align: center;
    margin-top: 20px;
}

.back-home a {
    text-decoration: none;
    color: #2a5298;
}

.back-home a:hover {
    text-decoration: underline;
}
