<style>
/*==========================
    ERP LOGIN CSS
==========================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Poppins', sans-serif;

    background: linear-gradient(135deg, #4F46E5, #6366F1, #7C3AED);

    min-height: 100vh;

}

.login-wrapper {

    display: flex;

    justify-content: center;

    align-items: center;

    height: 100vh;

    padding: 20px;

}

.login-box {

    width: 420px;

    background: #fff;

    border-radius: 20px;

    padding: 40px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);

}

.logo {

    width: 80px;

    height: 80px;

    margin: auto;

    border-radius: 50%;

    background: linear-gradient(135deg, #4F46E5, #7C3AED);

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 35px;

    margin-bottom: 15px;

}

.login-box h3 {

    font-weight: 700;

    color: #333;

}

.login-box p {

    color: #777;

}

label {

    font-weight: 600;

    margin-bottom: 8px;

}

.form-control {

    height: 50px;

    border-radius: 10px;

    border: 1px solid #ddd;

}

.form-control:focus {

    border-color: #4F46E5;

    box-shadow: 0 0 0 .2rem rgba(79, 70, 229, .2);

}

.input-group-text {

    background: #f5f5f5;

    border-radius: 10px 0 0 10px;

}

.show-password {

    cursor: pointer;

}

.btn-login {

    background: #4F46E5;

    color: #fff;

    height: 50px;

    border-radius: 10px;

    font-size: 17px;

    font-weight: 600;

    transition: .3s;

}

.btn-login:hover {

    background: #3730A3;

    color: #fff;

}

a {

    text-decoration: none;

}

a:hover {

    color: #4F46E5;

}

@media(max-width:576px) {

    .login-box {

        width: 100%;

        padding: 25px;

    }

}

</style>