body {
    background-color: #eceff4;
    margin: 0;
}

* {
    font-family: Verdana, sans-serif;
}

#page {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-buttons {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
}

.login-button {
    width: 200px;
    height: 55px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;

}

.login-button .login-name {
    font-size: 22px;
}

.login-card {
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    min-height: 500px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 4px 6px 14px -6px rgba(0,0,0,0.75);
}

.card-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    display: block;
}
@media (max-width: 600px) {
    .login-card {
        width: 100%;
        height: 100%;
    }
}
