/* =====================================
   LOGIN PAGE
===================================== */

.login-wrapper{
    min-height:100vh;
    display:flex;
    align-items:flex-start;
    justify-content:center;

    background:
        radial-gradient(circle at top left,#7b2ff7 0%,transparent 20%),
        radial-gradient(circle at bottom right,#c6a8ff 0%,transparent 22%),
        linear-gradient(135deg,#fbf9ff,#f5f2ff,#ffffff);

    padding:35px 20px 50px;

    position:relative;

    overflow-x:hidden;
    overflow-y:auto;

    box-sizing:border-box;
}

/* Decorative Circles */

.login-wrapper::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(123,47,247,.07);
    right:-120px;
    top:-120px;
}

.login-wrapper::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(123,47,247,.05);
    left:-180px;
    bottom:-180px;
}

/* Container */

.login-container{
    max-width:1150px;
}

/* LEFT */

.login-left{
    text-align:center;
    padding:20px;
}

.login-image{
    width:280px;
    max-width:100%;
    margin-bottom:25px;
    animation:floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{

    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}

}

.login-left h1{
    font-size:46px;
    font-weight:700;
    color:#1d2147;
}

.login-left p{
    font-size:20px;
    color:#666;
    max-width:360px;
    margin:auto;
}

.slider-dots{
    margin-top:25px;
}

.slider-dots span{
    display:inline-block;
    width:12px;
    height:12px;
    border-radius:50%;
    background:#ddd;
    margin:0 5px;
}

.slider-dots .active{
    background:#6d28d9;
}

/* CARD */

.login-card{
    width:100%;
    max-width:420px;
    background:#fff;
    border-radius:22px;
    padding:22px;
    margin:0 auto;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    animation:cardAnimation .6s ease;
}

@keyframes cardAnimation{

    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* Badge */

.welcome-badge{
    display:inline-block;
    background:#efe7ff;
    color:#5b21b6;
    padding:8px 20px;
    border-radius:25px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

/* Heading */

.login-card h2{
    font-size:28px;
    font-weight:700;
    color:#1d2147;
    line-height:1.2;
    margin:10px 0;
}

.login-card p{
    font-size:15px;
    color:#6b7280;
    margin-bottom:18px;
}

/* Labels */

.login-card label{
    font-size:15px;
    font-weight:600;
    margin-bottom:8px;
}

/* Inputs */

.input-group{
    margin-bottom:18px;
}

.input-group-text{
    background:#fff;
    border:1px solid #dac7ff;
    border-right:none;
    color:#6d28d9;
}

.input-group .form-control{
    height:44px;
    border:1px solid #dac7ff;
    border-left:none;
    font-size:15px;
    box-shadow:none;
}

.input-group .form-control:focus{
    border-color:#7b2ff7;
    box-shadow:none;
}

#togglePassword{
    border:1px solid #dac7ff;
    border-left:none;
    background:#fff;
}

/* Forgot Password */

.login-card .text-end{
    margin-bottom:22px;
}

.login-card a{
    color:#5b21b6;
    text-decoration:none;
    font-weight:600;
}

.login-card a:hover{
    text-decoration:underline;
}

/* Button */

.login-btn{
    width:100%;
    height:46px;
    border:none;
    border-radius:12px;
    background:linear-gradient(90deg,#7b2ff7,#5b21b6);
    color:#fff;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.login-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 22px rgba(123,47,247,.35);
}

/* Register */

.login-card .text-center{
    margin-top:20px;
}

/* Dots */

.bg-dots{
    position:absolute;
    width:220px;
    height:160px;
    background-image:radial-gradient(#8b5cf6 2px,transparent 2px);
    background-size:18px 18px;
    opacity:.35;
}

.top-right{
    top:40px;
    right:40px;
}

.bottom-left{
    bottom:40px;
    left:40px;
}

/* Responsive */

@media(max-width:991px){

.login-left{
    display:none;
}



}

@media(max-width:576px){

.login-wrapper{
    padding:15px;
}




}