/* ==========================================
   PACTA LOGIN PAGE
========================================== */

body{
    background:#eef3f9;
    font-family:'Poppins',sans-serif;
}

/* Main Section */

.login-section{
    padding:70px 0;
}

/* Main Card */

.login-section .row{
    border-radius:20px;
    overflow:hidden;
}

/* Left Panel */

.login-left{

    background:linear-gradient(135deg,#0A2D62,#103D86);

    color:#fff;

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:700px;

}

.login-overlay{

    width:100%;

    padding:60px;

}

.login-logo{

    width:90px;

    margin-bottom:30px;

}

.login-left h2{

    font-size:40px;

    font-weight:700;

    margin-bottom:10px;

}

.login-left h5{

    color:#d4af37;

    margin-bottom:25px;

}

.login-left p{

    color:#f1f1f1;

    line-height:1.8;

    margin-bottom:40px;

}

/* Security Box */

.security-box{

    background:rgba(255,255,255,.08);

    padding:25px;

    border-radius:15px;

    backdrop-filter:blur(5px);

}

.security-box h6{

    color:#d4af37;

    margin-bottom:20px;

    font-weight:700;

}

.security-box ul{

    list-style:none;

    padding:0;

    margin:0;

}

.security-box li{

    margin-bottom:12px;

    padding-left:28px;

    position:relative;

}

.security-box li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:#d4af37;

}

/* Right Panel */

.bg-white{

    padding:70px !important;

}

/* Inputs */

.form-control{

    height:55px;

    border-radius:10px;

    border:1px solid #d7dce2;

}

.form-control:focus{

    border-color:#0A2D62;

    box-shadow:0 0 0 .15rem rgba(10,45,98,.15);

}

.input-group .btn{

    border-radius:0 10px 10px 0;

}

/* Buttons */

.btn-warning{

    background:#d4af37;

    border:none;

    color:#1B1F2A;

    font-weight:700;

    border-radius:10px;

    transition:.3s;

}

.btn-warning:hover{

    background:#c89a1b;

    transform:translateY(-2px);

}

.btn-outline-primary{

    border-radius:10px;

    padding:10px 25px;

}

/* Links */

a{

    color:#0A2D62;

}

a:hover{

    color:#d4af37;

}

/* Responsive */

@media(max-width:991px){

.login-left{

    min-height:420px;

}

.login-overlay{

    padding:40px;

}

.bg-white{

    padding:40px !important;

}

.login-left h2{

    font-size:32px;

}

}
/* ==========================================
   SUCCESS MODAL
========================================== */

.success-check{

    width:120px;

    height:120px;

    background:#eaf9ee;

    border-radius:50%;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    animation:pop .5s ease;

}

.success-check i{

    font-size:70px;

    color:#28a745;

}

.modal-content{

    border-radius:25px;

}

@keyframes pop{

    0%{

        transform:scale(.3);

        opacity:0;

    }

    100%{

        transform:scale(1);

        opacity:1;

    }

}