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

.container {
    text-align: center;
}

.container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

#google-logo {
    width: 28px;
    height: auto;
    margin-right: 5px;
}

#google-login-button {
    text-decoration: none;
    width: fit-content;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    padding: 10px 20px 10px 15px;
    font-size: 16px;
    color: #0074FF;
    background-color: transparent;
    border: 2px solid #DDDED8;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

#google-login-button:hover {
    background-color: #DDDED8;
}