.ulp-google-login{
    margin-top:24px;
}

.ulp-google-divider{
    display:flex;
    align-items:center;
    margin:22px 0;
}

.ulp-google-divider:before,
.ulp-google-divider:after{
    content:"";
    flex:1;
    border-bottom:1px solid #ddd;
}

.ulp-google-divider span{
    padding:0 14px;
    color:#777;
    font-size:13px;
    font-weight:600;
}

.ulp-google-btn{
    width:100%;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    border:0;
    border-radius:8px;
    background:#870404;
    color:#fff;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.2s;
}

.ulp-google-btn:hover{
    background:#de0707;
}

.ulp-google-btn:active{
    transform:scale(.98);
}

.ulp-google-btn:disabled{
    cursor:not-allowed;
}

.ulp-google-icon{
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border-radius:50%;
    flex-shrink:0;
}

.ulp-google-icon svg{
    width:20px;
    height:20px;
    display:block;
}

/* ==========================================
   Loading Spinner
========================================== */

.ulp-google-spinner{
    display:none;
    width:18px;
    height:18px;
    border:2px solid rgba(255,255,255,.35);
    border-top:2px solid #fff;
    border-radius:50%;
    animation:ulpGoogleSpin .8s linear infinite;
    flex-shrink:0;
}

@keyframes ulpGoogleSpin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* ==========================================
   Hidden Google Button
========================================== */

#ulp-google-hidden-button,
#ulp-google-hidden-button iframe,
#ulp-google-hidden-button div{
    position:absolute!important;
    left:-99999px!important;
    top:-99999px!important;
    opacity:0!important;
    width:1px!important;
    height:1px!important;
    overflow:hidden!important;
}

/* ==========================================
   Google Dialog
========================================== */

.ulp-google-dialog-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:999999;
    animation:ulpFade .2s ease;
}

.ulp-google-dialog{
    width:92%;
    max-width:380px;
    background:#fff;
    border-radius:14px;
    padding:28px 24px;
    text-align:center;
    animation:ulpZoom .2s ease;
    box-shadow:0 18px 45px rgba(0,0,0,.18);
    transition:all .18s ease;
}

.ulp-google-dialog-icon{
    width:64px;
    height:64px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#ffe8e8;
    color:#d32f2f;
    font-size:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.ulp-google-dialog-title{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    color:#222;
}

.ulp-google-dialog-message{
    font-size:15px;
    line-height:1.7;
    color:#666;
    margin-bottom:24px;
}

.ulp-google-dialog-btn{
    border:0;
    background:#f57c00;
    color:#fff;
    border-radius:8px;
    padding:12px 34px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
}

.ulp-google-dialog-btn:hover{
    background:#ef6c00;
}

.ulp-google-dialog-btn:focus{
    outline:none;
}

@keyframes ulpFade{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

@keyframes ulpZoom{
    from{
        opacity:0;
        transform:scale(.9);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}