body {
    background-color: white;
    font-family: sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.logo {
    width: 60px;
    object-fit: contain;
    margin-bottom: 6px;
}

.container {
    background-color: white;
    padding: 80px 20px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

h1.page-title {
    color: black;
    font-size: 2em;
    margin-bottom: 16px;
}

p {
    color: black;
    font-size: 1em;
    margin-bottom: 24px;
}

.login-button {
    display: inline-block;
    background-color: black;
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 0.8em;
    text-decoration: none;
    font-weight: bold;
}

.login-button:hover {
    background-color: #333333;
}