html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}


.login-form {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px #ccc;
}

footer {
    background-color: #f4f4f4;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
    color: #555;
    margin-top: auto;
    width: 100%;
}

footer a {
    color: #007acc;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}