@font-face
{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/static/fonts/Roboto-Medium.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.gsi-button
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 40px;
    padding: 0 12px;
    background: #FFFFFF;
    border: 1px solid #747775;
    border-radius: 8px;
    color: #1F1F1F;
    font-family: 'Roboto', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.25px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
}

.gsi-button:hover:not(:disabled)
{
    background: #F8F9FA;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.30), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.gsi-button:focus-visible
{
    outline: 2px solid #1F1F1F;
    outline-offset: 2px;
}

.gsi-button:disabled,
.gsi-button[aria-disabled="true"]
{
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.gsi-logo
{
    flex-shrink: 0;
    display: block;
}
