@font-face {
    font-family: 'Poppins';
    src: url('../assets/font/Poppins-Regular.ttf');
}

.login-container {
    width: 100%;
    display: flex;
    height: 100vh;
}


.left-side {
    width: 40%;
    background-color: #0989B3;
    height: 100vh;
}

.top-of-side {
    display: flex;
    justify-content: center;
    align-self: center;
    align-items: center;
    margin: 0 auto;
    padding: 20px;
    width: 50%;
}

.smarthand-logo {
    width: 40%;
    height: auto;
    display: block;
}

.system-name {
    font-family: Poppins, sans-serif;
    color: white;
    font-size: 1.4rem;
    width: 100%;
    text-align: center;
    font-weight: 500;
}

.middle-of-side {
    display: flex;
    justify-content: center;
    align-self: center;
    align-items: center;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.middle-of-side img {
    width: 300px;
    height: auto;
}

.login-footer {
    height: auto;
    display: flex;
    justify-content: center;
    align-content: end;
}

.login-footer p {
    width: 100%;
    display: inline-block;
    font-family: Poppins, sans-serif;
    color: white;
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
}

.login-footer p a {
    text-decoration: none;
    color: white;
}


.main-side {
    width: 60%;
}

.login-title {
    font-family: Poppins, sans-serif;
    color: #1a1a1a;
    font-size: 2rem;
    width: 100%;
    text-align: center;
    align-items: center;
    align-self: center;
    font-weight: 500;
}

.login-part {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    align-content: center;
    align-items: center;
    margin: auto 0;
}


.login-label {
    width: 65%;
    margin-bottom: 6px !important;
}

.username-input {
    width: 65%;
}

.password-input {
    border-width: 1px 0 1px 1px !important;
    border-color: #ced4da !important;
}

.eye-span {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    /*background-color: #e9ecef;*/
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}

.eye-button {
    border: 0;
    background-color: transparent;
    color: #7e7e81;
}

.login-btn {
    background-color: #01023B;
    color: #fff;
    width: 35%;
    font-size: 18px;
    margin-top: 25px !important;
    border: 0;
    padding: 10px;
    border-radius: 5px;
}

.logo-mob {
    display: none;
}

@media only screen and (max-width: 768px) {
    .main-side {
        width: 100%;
        height: 95vh;
    }

    .login-part {
        height: 95vh;
    }

    .left-side {
        display: none;
    }

    .logo-mob {
        display: flex;
        justify-content: center;
        padding-bottom: 1rem;
    }

    .logo-mob .smarthand-logo {
        width: 60%;
    }
}