/* Google Login Button – stílus */

.google-login-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 4px;
    color: #3c4043;
    font-family: 'Google Sans', Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, box-shadow 0.15s ease;
    justify-content: center;
}

.google-login-button:hover {
    background: #f8f9fa;
    box-shadow: 0 1px 3px rgba(60,64,67,0.2);
    color: #3c4043;
    text-decoration: none;
    border-color: #d2e3fc;
}

.google-login-button:focus {
    outline: 2px solid #4285f4;
    outline-offset: 2px;
}

.google-login-button:active {
    background: #f1f3f4;
}

.google-login-button__icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.google-login-button__icon svg {
    display: block;
}

.google-login-button__text {
    flex: 1;
    text-align: center;
}

/* Ha a WP login oldalon jelenik meg */
#loginform .google-login-button {
    margin-bottom: 0;
}
