html,
body{
    min-height:100%;
}

.pv-login-body{
    margin:0;
    font-family:"Roboto", Arial, sans-serif;
    background:#eef2f7;
    color:#2f394e;
}

.pv-login-wrapper{
    min-height:100vh;
    display:grid;
    grid-template-columns:1.05fr .95fr;
}

.pv-login-left{
    position:relative;
    padding:56px;
    background:
        linear-gradient(135deg, rgba(31,35,60,.95), rgba(87,102,218,.88)),
        url("../images/overlay.png");
    background-size:cover;
    background-position:center;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.pv-brand-box{
    max-width:620px;
}

.pv-logo-circle{
    width:76px;
    height:76px;
    border-radius:24px;
    background:rgba(255,255,255,.14);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.pv-logo-circle i{
    font-size:42px;
}

.pv-brand-box h1{
    font-size:36px;
    line-height:1.25;
    margin:0 0 14px;
    font-weight:700;
}

.pv-brand-box p{
    font-size:15px;
    line-height:1.75;
    color:rgba(255,255,255,.82);
    max-width:520px;
}

.pv-login-type-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
    max-width:580px;
    margin-top:34px;
}

.pv-type-card{
    display:flex;
    flex-direction:column;
    padding:18px;
    border-radius:18px;
    background:rgba(255,255,255,.11);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    transition:.2s ease;
    text-decoration:none!important;
}

.pv-type-card:hover,
.pv-type-card.active{
    color:#fff;
    background:rgba(255,255,255,.22);
    transform:translateY(-2px);
    box-shadow:0 18px 38px rgba(0,0,0,.18);
}

.pv-type-card i{
    font-size:28px;
    margin-bottom:8px;
}

.pv-type-card span{
    font-size:15px;
    font-weight:700;
}

.pv-type-card small{
    color:rgba(255,255,255,.72);
    margin-top:3px;
}

.pv-login-footer-text{
    margin-top:34px;
    font-size:13px;
    color:rgba(255,255,255,.72);
}

.pv-login-right{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 28px;
}

.pv-login-card{
    width:100%;
    max-width:430px;
    background:#fff;
    border-radius:24px;
    padding:34px;
    box-shadow:0 22px 60px rgba(47,57,78,.12);
    border:1px solid rgba(226,230,239,.9);
}

.pv-login-icon{
    width:66px;
    height:66px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
    background:#eef1ff;
    color:#5766da;
}

.pv-login-icon i{
    font-size:34px;
}

.pv-login-card h4{
    font-weight:700;
    color:#2f394e;
}

.pv-login-card label{
    font-size:13px;
    font-weight:600;
    color:#596276;
}

.pv-input-group{
    position:relative;
}

.pv-input-group > i{
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    color:#9aa3b8;
    font-size:20px;
    z-index:2;
}

.pv-input-group .form-control{
    height:46px;
    border-radius:12px;
    padding-left:44px;
    border:1px solid #e2e6ef;
    box-shadow:none;
}

.pv-input-group .form-control:focus{
    border-color:#5766da;
    box-shadow:0 0 0 .14rem rgba(87,102,218,.12);
}

.pv-password-toggle{
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    border:0;
    background:transparent;
    color:#8b94aa;
    font-size:20px;
    cursor:pointer;
    padding:4px;
}

.pv-login-btn{
    height:46px;
    border-radius:12px;
    font-weight:700;
    box-shadow:0 10px 24px rgba(87,102,218,.25);
}

.pv-customer-shortcut{
    margin-top:22px;
    padding-top:18px;
    border-top:1px solid #edf0f5;
    text-align:center;
    font-size:13px;
    color:#7a8397;
}

.alert{
    border-radius:12px;
    font-size:13px;
}

@media(max-width:991px){
    .pv-login-wrapper{
        grid-template-columns:1fr;
    }

    .pv-login-left{
        padding:34px 20px;
        min-height:auto;
    }

    .pv-brand-box h1{
        font-size:26px;
    }

    .pv-login-type-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        margin-top:24px;
    }

    .pv-login-right{
        padding:26px 18px;
    }
}

@media(max-width:575px){
    .pv-login-type-grid{
        grid-template-columns:1fr;
    }

    .pv-login-card{
        padding:24px 20px;
        border-radius:18px;
    }
}
