@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:linear-gradient(135deg,#2563eb,#4f46e5);
    min-height:100vh;
}

.auth-wrapper{
    min-height:100vh;
}

.auth-card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.auth-left{
    background:linear-gradient(135deg,#1d4ed8,#312e81);
    color:#fff;
    min-height:650px;
}

.auth-left h2{
    font-size:42px;
    font-weight:700;
}

.auth-left p{
    font-size:18px;
    opacity:.9;
    line-height:30px;
}

.auth-left::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-80px;
    left:-80px;
}

.auth-left::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-120px;
    right:-120px;
}

.auth-left{
    position:relative;
    overflow:hidden;
}

.form-control{
    border-radius:12px;
    height:50px;
    border:1px solid #d9d9d9;
    box-shadow:none;
}

.form-control:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 .2rem rgba(37,99,235,.15);
}

.input-group-text{
    cursor:pointer;
    background:#fff;
    border-radius:0 12px 12px 0;
}

.btn-primary{
    background:#2563eb;
    border:none;
    border-radius:12px;
    height:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

a{
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

label{
    font-weight:500;
    margin-bottom:8px;
}

.alert{
    border-radius:12px;
}

@media(max-width:991px){

.auth-left{
display:none;
}

.auth-card{
margin:25px;
}

}