/*====================================================
    WINGUPAY ESS LOGIN
====================================================*/

:root{

    --primary:#7A1253;

    --primary-dark:#5F0E42;

    --secondary:#2A3F54;

    --light:#F5F7FB;

    --border:#E6EAF0;

    --text:#374151;

    --shadow:0 20px 60px rgba(0,0,0,.12);

    --radius:18px;

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html,
body{

    height:100%;

    font-family:"Segoe UI",Tahoma,Geneva,Verdana,sans-serif;

    background:#f8f9fc;

}

body{

    overflow:hidden;

}


/*====================================================
MAIN LAYOUT
====================================================*/

.login-wrapper{

    display:flex;

    width:100%;

    height:100vh;

}


/*====================================================
LEFT PANEL
====================================================*/

.login-left{

    width:60%;

    position:relative;

    overflow:hidden;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

    linear-gradient(135deg,

    #7A1253 0%,

    #6A1049 30%,

    #56103E 60%,

    #2A3F54 100%);

}


/*====================================================
BACKGROUND BLOBS
====================================================*/

.login-left::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-220px;

    left:-180px;

}

.login-left::after{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    bottom:-170px;

    right:-150px;

}


/*====================================================
OVERLAY
====================================================*/

.overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    rgba(0,0,0,.08),

    rgba(0,0,0,.15));

}


/*====================================================
BRAND CONTENT
====================================================*/

.brand-content{

    position:relative;

    z-index:5;

    width:80%;

    max-width:650px;

}

.brand-logo{

    width:220px;

    margin-bottom:40px;

}

.brand-content h1{

    font-size:46px;

    font-weight:700;

    line-height:1.15;

    margin-bottom:20px;

}

.brand-content p{

    font-size:19px;

    line-height:1.8;

    opacity:.94;

    margin-bottom:45px;

}


/*====================================================
FEATURES
====================================================*/

.feature{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:28px;

}

.feature .icon{

    width:62px;

    height:62px;

    border-radius:15px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    font-size:24px;

}

.feature h5{

    font-size:20px;

    margin-bottom:6px;

}

.feature small{

    font-size:15px;

    opacity:.88;

}

/*====================================================
RIGHT PANEL
====================================================*/

.login-right {
    width: 40%;
    background: #F7F9FC;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    position: relative;
}

    .login-right::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at top right, rgba(122,18,83,.08) 0, transparent 35%), radial-gradient(circle at bottom left, rgba(42,63,84,.05) 0, transparent 30%);
    }


/*====================================================
LOGIN CARD
====================================================*/

.login-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 22px;
    padding: 50px;
    box-shadow: 0 25px 70px rgba(0,0,0,.12);
    border: 1px solid #ECECEC;
}


/*====================================================
LOGO
====================================================*/

.login-logo {
    width: 180px;
    display: block;
    margin: 0 auto 35px;
}


/*====================================================
HEADINGS
====================================================*/

.login-card h2 {
    text-align: center;
    color: #2A3F54;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-card p {
    text-align: center;
    margin-bottom: 35px;
    color: #6B7280;
}


/*====================================================
LABELS
====================================================*/

.login-card label {
    font-weight: 600;
    color: #2A3F54;
    margin-bottom: 8px;
    display: block;
}


/*====================================================
INPUT GROUP
====================================================*/

.input-group {
    border-radius: 14px;
    overflow: hidden;
}

.input-group-text {
    background: #F7F8FB;
    border: 1px solid #D9E1EA;
    color: #7A1253;
    width: 56px;
    justify-content: center;
}

.form-control {
    border: 1px solid #D9E1EA;
    border-left: none;
    box-shadow: none;
    height: 58px;
    font-size: 15px;
}

    .form-control:focus {
        border-color: #7A1253;
        box-shadow: none;
    }


/*====================================================
PASSWORD BUTTON
====================================================*/

#togglePassword {
    border: 1px solid #D9E1EA;
    border-left: none;
    background: #fff;
    color: #7A1253;
    width: 60px;
}

    #togglePassword:hover {
        background: #F4F4F4;
    }


/*====================================================
REMEMBER ME
====================================================*/

.form-check-input:checked {
    background: #7A1253;
    border-color: #7A1253;
}

.forgot-link {
    text-decoration: none;
    color: #7A1253;
    font-weight: 600;
}

    .forgot-link:hover {
        color: #5E0E42;
    }


/*====================================================
LOGIN BUTTON
====================================================*/

.login-btn {
    background: #7A1253;
    color: #fff;
    border: none;
    border-radius: 14px;
    height: 58px;
    font-size: 18px;
    font-weight: 600;
    transition: .25s;
}

    .login-btn:hover {
        background: #5E0E42;
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(122,18,83,.35);
    }

    .login-btn:active {
        transform: scale(.98);
    }


/*====================================================
ALERT
====================================================*/

#loginAlert {
    border-radius: 12px;
    display: none;
}
/*====================================================
DIVIDER
====================================================*/

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
}

    .divider::before,
    .divider::after {
        content: "";
        flex: 1;
        border-bottom: 1px solid #E5E7EB;
    }

    .divider span {
        padding: 0 18px;
        color: #9CA3AF;
        font-size: 14px;
        font-weight: 600;
    }


/*====================================================
MICROSOFT BUTTON
====================================================*/

.microsoft-btn {
    height: 56px;
    border-radius: 14px;
    font-weight: 600;
    background: #fff;
    transition: .25s;
}

    .microsoft-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
        border-color: #7A1253;
    }

    .microsoft-btn img {
        vertical-align: middle;
    }


/*====================================================
SECURITY MESSAGE
====================================================*/

.security-box {
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    color: #6B7280;
    font-size: 14px;
    margin-top: 25px;
}

    .security-box i {
        color: #16A34A;
    }


/*====================================================
FOOTER
====================================================*/

.login-footer {
    text-align: center;
}

    .login-footer a {
        color: #7A1253;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: .25s;
    }

        .login-footer a:hover {
            color: #5E0E42;
        }

.copyright {
    text-align: center;
    color: #9CA3AF;
    font-size: 13px;
    margin-top: 20px;
    line-height: 1.8;
}


/*====================================================
ANIMATIONS
====================================================*/

.login-card {
    animation: fadeUp .8s ease;
}

.brand-content {
    animation: slideLeft .8s ease;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {

    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/*====================================================
CUSTOM SCROLLBAR
====================================================*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #F1F1F1;
}

::-webkit-scrollbar-thumb {
    background: #7A1253;
    border-radius: 20px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #5E0E42;
    }


/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:1200px) {

    .brand-content {
        width: 90%;
    }

        .brand-content h1 {
            font-size: 38px;
        }
}


@media(max-width:992px) {

    body {
        overflow: auto;
    }

    .login-wrapper {
        flex-direction: column;
        min-height: 100vh;
    }

    .login-left {
        width: 100%;
        min-height: 420px;
        padding: 50px;
    }

    .login-right {
        width: 100%;
        padding: 40px 20px;
    }

    .login-card {
        max-width: 600px;
    }
}


@media(max-width:768px) {

    .login-left {
        display: none;
    }

    .login-right {
        width: 100%;
        min-height: 100vh;
        padding: 25px;
    }

    .login-card {
        padding: 35px;
        border-radius: 18px;
    }

    .login-logo {
        width: 150px;
    }

    .login-card h2 {
        font-size: 28px;
    }
}


@media(max-width:480px) {

    .login-card {
        padding: 25px;
    }

    .login-btn {
        font-size: 16px;
    }
}

.activation-card {
    border-radius: 24px;
}

.activation-logo {
    width: 180px;
}

#LicenseKey {
    letter-spacing: 3px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 15px;
}

    #LicenseKey:focus {
        border-color: #7A1253;
        box-shadow: 0 0 0 .2rem rgba(122,18,83,.2);
    }

.btn-primary {
    background: #7A1253;
    border: none;
    border-radius: 15px;
}

    .btn-primary:hover {
        background: #611042;
    }