/*
 * karo-cloud-auth — wp-login.php styling for the "Sign in with Google" button.
 *
 * The button is rendered in the login footer area. We want it to read as
 * a peer of the standard WordPress "Log In" button: same width, sits
 * directly below, brand-correct for Google (white background + grey
 * border per Google's identity guidelines).
 */

.karo-google-signin {
    margin: 16px 0 0;
    text-align: center;
}

.karo-google-signin::before {
    content: attr(data-or-label, "or");
    display: block;
    margin: 0 0 12px;
    color: #6c7781;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.karo-google-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 16px;
    background: #ffffff;
    color: #3c4043;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #dadce0;
    border-radius: 4px;
    line-height: 20px;
    transition: background 0.2s, box-shadow 0.2s;
}

.karo-google-button:hover,
.karo-google-button:focus {
    background: #f8f9fa;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.16);
    color: #3c4043;
    text-decoration: none;
}

.karo-google-button svg {
    flex: 0 0 18px;
}
