/* ============================================================
   Login Social Options — Redesigned
   Extracted from inline <style> in application/views/login/social_login_options_redesign.php
   ============================================================ */

.social-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 42px;
    border-radius: 10px;
    border: 1.5px solid #E2E8F0;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: #1A2744;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .15s, background .15s, box-shadow .15s;
}
.social-btn:hover {
    border-color: #94A3B8;
    background: #F8FAFC;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    text-decoration: none;
    color: #1A2744;
}
.social-btn svg, .social-btn img.social-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
