.login-wrapper{
    padding: 80px 0;
    background: #f8f9fb;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
}

.login-card{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #ececf3;
}

.login-card h2{
    font-size: 34px;
    line-height: 42px;
    font-weight: 500;
    color: #1E1251;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.sub-text{
    font-size: 15px;
    color: rgba(30,18,81,0.65);
    margin-bottom: 28px;
}

.top-links{
    margin-bottom: 28px;
}

.top-links a{
    font-size: 13px;
    font-weight: 600;
    color: #1E1251;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
}

.top-links a:hover{
    color: #6C63FF;
}

.form-group{
    margin-bottom: 22px;
}

.form-group input{
    width: 100%;
    height: 60px;
    border: 1px solid #dfe3ea;
    border-radius: 10px;
    padding: 0 18px;
    font-size: 16px;
    font-weight: 500;
    color: #1E1251;
    background: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder{
    color: rgba(30,18,81,0.45);
    font-weight: 400;
}

.form-group input:focus{
    border-color: #6C63FF;
    box-shadow: 0 0 0 3px rgba(108,99,255,0.08);
}

.extra-links{
    text-align: right;
    margin-bottom: 30px;
}

.extra-links a{
    font-size: 14px;
    color: rgba(30,18,81,0.75);
    text-decoration: none;
    transition: 0.3s;
}

.extra-links a:hover{
    color: #6C63FF;
}

.login-btn{
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 10px;
    background: #24134F;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.login-btn:hover{
    background: #D3CEFE;
    color: #24134F;
}

.lg-img{
    width: 100%;
    max-width: 350px;
    display: block;
    margin: auto;
}

@media(max-width:991px){

    .login-card{
        padding: 35px;
    }

    .login-card h2{
        font-size: 28px;
        line-height: 36px;
    }

    .lg-img{
        margin-top: 40px;
    }
}

@media(max-width:767px){

    .login-wrapper{
        padding: 40px 0;
    }

    .login-card{
        padding: 25px;
        border-radius: 14px;
    }

    .login-card h2{
        font-size: 24px;
        line-height: 32px;
    }

    .form-group input{
        height: 54px;
        font-size: 14px;
    }

    .login-btn{
        height: 54px;
        font-size: 14px;
    }

    .sub-text{
        font-size: 14px;
    }

    .extra-links{
        margin-bottom: 22px;
    }
}