/* ============================================================
   UIP Google Auth — кнопка входу
   ============================================================ */

.uip-google-auth {
    margin-bottom: 20px;
    margin-top: 20px;
}

.uip-google-auth__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 11px 16px;
    background: #fff;
    color: #3c4043;
    border: 1.5px solid #dadce0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none !important;
    transition: background 0.15s, box-shadow 0.15s, border-color 0.15s;
    box-sizing: border-box;
    cursor: pointer;
}

.uip-google-auth__btn:hover {
    background: #f8f9fa;
    border-color: #c6c9cc;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .12);
    color: #3c4043;
}

.uip-google-auth__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Розділювач "або" */
.uip-google-auth__divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    color: #9aa0a6;
    font-size: 0.8rem;
}

.uip-google-auth__divider::before,
.uip-google-auth__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}