.hitech-social-login{
    margin:26px 0 4px;
    padding-top:24px;
    border-top:1px solid rgba(200,165,77,0.16);
}

.hitech-social-login-title{
    margin:0 0 16px;
    color:#999;
    text-align:center;
    font-size:13px;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.hitech-social-login-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
}

.hitech-social-login-button{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 14px;
    border:1px solid rgba(200,165,77,0.25);
    border-radius:14px;
    background:#0d0d0d;
    color:#f3da84 !important;
    font-size:14px;
    font-weight:600;
    line-height:1.2;
    text-align:center;
    text-decoration:none !important;
    transition:all .25s ease;
}

.hitech-social-login-button:hover{
    border-color:#c8a54d;
    background:#151515;
    color:#fff !important;
    transform:translateY(-2px);
}

.hitech-social-login-button .hitech-social-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:22px;
    height:22px;
    margin-right:8px;
    border-radius:50%;
    background:#c8a54d;
    color:#050505;
    font-size:12px;
    font-weight:800;
}

.hitech-social-login-error{
    margin:0 0 16px;
    padding:12px 14px;
    border:1px solid rgba(220,90,90,.45);
    border-radius:12px;
    background:rgba(120,20,20,.2);
    color:#ffb1a8;
    font-size:13px;
    line-height:1.5;
}

@media(max-width:560px){
    .hitech-social-login-grid{
        grid-template-columns:1fr;
    }
}