
/* Google Login Button Styles */
.google-login-button-container {
    margin: 20px 0;
    text-align: center;
}

.google-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #4285F4;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 16px;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}

.google-login-button:hover {
    background-color: #3367D6;
    text-decoration: none;
    color: white;
}

.google-icon {
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .google-login-button {
        width: 100%;
        max-width: 300px;
    }
}
