* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #f2f2f2;

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 400px;

    background: white;

    padding: 35px;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 8px;
    font-weight: bold;
}

input {
    padding: 12px;

    margin-bottom: 20px;

    border: 1px solid #ccc;
    border-radius: 6px;

    font-size: 16px;
}

input:focus {
    outline: none;
    border-color: #333;
}

button {
    padding: 12px;

    border: none;
    border-radius: 6px;

    background: #222;
    color: white;

    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #444;
}

#message {
    text-align: center;
    margin-top: 15px;
}

footer {
    position: fixed;

    bottom: 20px;
    left: 0;

    width: 100%;

    text-align: center;

    font-size: 14px;

    color: #666;
}

footer p {
    margin-bottom: 5px;
}

footer a {
    color: #333;

    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}