/* ═══════════════════════════════════════════════════════
   FIDEOGRAPH SOCIAL LOGIN BUTTONS  v1
   ═══════════════════════════════════════════════════════ */

.fgr-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 4px;
}

.fgr-btn--social {
    width: 100%;
    padding: 11px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .15s;
    text-decoration: none;
    line-height: 1;
}

.fgr-btn--social svg {
    flex-shrink: 0;
}

/* Google */
.fgr-btn--google {
    background: #fff;
    color: #3c4043;
    border: 1px solid #dadce0;
}
.fgr-btn--google:hover {
    background: #f7f8f8;
    border-color: #c6c9cd;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

/* Apple */
.fgr-btn--apple {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}
.fgr-btn--apple:hover {
    background: #1a1a1a;
}

.fgr-btn--social[disabled] {
    opacity: .6;
    cursor: not-allowed;
}
