/* Styles for the sign-in page */
.signin-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    box-sizing: border-box;
}

.google-signin-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #4285f4; /* Google Blue */
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.google-signin-button:hover {
    background-color: #357ae8;
}

.google-signin-button:active {
    background-color: #2a65c8;
}
