body {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100vh;
}

.login-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    padding: 30px;
    text-align: center;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    width: 120px;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

input[type="text"],
input[type="password"] {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

button {
    margin-top: 20px;
    padding: 10px;
    background-color: #095c9b;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

.login-footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #999;
}
