@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    width: 100%;
    min-height: 100vh;
    padding: 0 10px;
    display: flex;
    background: -webkit-linear-gradient(90deg, #313989, #0091c5, #84e1e0);
    background: linear-gradient(90deg, #313989, #0091c5, #84e1e0);
    justify-content: center;
    align-items: center;
    user-select: none;
}

.login_form {
    width: 100%;
    max-width: 435px;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.login_form .logo {
    text-align: center;

    & img {
        width: 160px;
        height: 135px;
    }
}

.login_form .title_box {
    font-size: 14px;
    text-align: center;
    color: #8b8b8d;
    font-weight: 400;
    margin-bottom: 25px;
}

.login_form .title_box .title {
    font-size: 22px;
}

.login_form .title_box strong {
    color: black;
}

.login_form p {
    text-align: center;
    font-weight: 500;
}

.input_box {
    position: relative;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper .user {
    position: absolute;
    left: 10px;
    top: 35%;
    color: #484646;
    transform: translateY(-50%);
}

.input-icon-wrapper .lock {
    position: absolute;
    left: 10px;
    top: 35%;
    color: #484646;
    transform: translateY(-50%);
}

.input-icon-wrapper .eye {
    position: absolute;
    right: 15px;
    top: 35%;
    cursor: pointer;
    z-index: 1;
    color: #484646;
    transform: translateY(-50%);
}

form .input_box label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
}

form .input_box input {
    width: 100%;
    height: 50px;
    border: 2px solid #E4E4E7;
    border-radius: 5px;
    outline: none;
    background: #F8F8FB;
    font-size: 14px;
    padding: 0 45px;
    margin-bottom: 20px;
    transition: 0.2s ease;
}

form .input_box input:focus {
    border-color: #071f3d;
}

form .input_box .password_title {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

form .input_box {
    position: relative;
}

form button {
    width: 100%;
    height: 56px;
    border-radius: 6px;
    border: none;
    outline: none;
    background: #2BA5AA;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 20px 0;
    transition: 0.3s ease;
}

form button:hover {
    background: #37c2c7;
}

.alert {
    margin-bottom: 0 !important;
}

.alert-danger {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: opacity 0.6s ease-out;
}