.google-oauth-container {
    margin: 10px 0;
}

.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: white;
    color: #3c4043;
    border: 1px solid #dadce0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.google-login-btn:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(60, 64, 67, 0.15);
}

.google-login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(60, 64, 67, 0.15);
}

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

.google-login-btn:disabled {
    background: #f8f9fa;
    color: #9aa0a6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.google-login-btn:disabled:hover {
    background: #f8f9fa;
    transform: none;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}