/* Google OAuth Login - Login page styles */

.googleoauth-login-container {
    padding: 1rem 0;
}

.btn-google-login {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.5rem;
    background-color: #fff;
    color: #3c4043;
    border: 1px solid #dadce0;
    border-radius: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: 'Google Sans', Roboto, Arial, sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.btn-google-login:hover {
    background-color: #f7f8f8;
    border-color: #c6c9cd;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.15);
    color: #3c4043;
    text-decoration: none;
}

.btn-google-login:active {
    background-color: #eef0f1;
}

.btn-google-login .google-icon {
    flex-shrink: 0;
}
