body {
    font-family: sans-serif;
    background-color: #18191a;
    color: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

body > h1 {
    max-width: 600px;
    width: 90%;
    margin-bottom: 30px;
    text-align: center;
    box-sizing: border-box;
}

body > p {
    max-width: 600px;
    width: 90%;
    margin-bottom: 30px;
    text-align: center;
    box-sizing: border-box;
}

.login-btn,
.logout-btn {
    display: block;
    max-width: 600px;
    width: 90%;
    box-sizing: border-box;
    text-align: center;
    background-color: #b52828;
    color: #fafafa;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    margin-top: 0;
}

.info {
    background-color: #2c2d2e;
    padding: 15px;
    border-radius: 8px;
    margin-top: 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
    box-sizing: border-box;
}

img[alt="FUTOauth Logo"] {
    display: block;
    width: 600px;
    max-width: 90%; /* Ensures responsiveness */
    margin-bottom: 20px;
    margin-left: auto; /* Center if max-width applies */
    margin-right: auto; /* Center if max-width applies */
} 