body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #1e3c72, #2a5298);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 320px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

h1 {
    font-size: 18px;
    margin-bottom: 5px;
}

h3 {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-form button {
    width: 100%;
    padding: 10px;
    background: #2a5298;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-form button:hover {
    background: #1e3c72;
}

.links {
    margin-top: 15px;
}

.links a {
    text-decoration: none;
    color: #2a5298;
    font-size: 13px;
}

.links a:hover {
    text-decoration: underline;
}

.footer {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 10px;
    color: #555;
}