/* =========================================
            Login Page
========================================= */

.login-page {
    height: 100vh;
}

.login-page-inner {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 384px;
    margin: auto;
}

.login-logo {
    text-align: center;
    margin-bottom: 28px;
}

.login-page-center {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 16px -2px #0000002b;
    position: relative;
    width: 100%;
}

.login-text-one h2 {
    font-size: 22px;
    font-weight: 600;
    color: #0000009e;
}

.login-text-one p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 19px;
}

.login-form form label {
    font-size: 13px;
    text-transform: uppercase;
    color: #000000b8;
    font-weight: 500;
}

.one-email {
    margin-bottom: 22px;
}

.one-password {
    margin-bottom: 15px;
}

.form-check label {
    text-transform: none !important;
}

.form-check {
    margin-bottom: 20px;
}

body .form-check label {
    font-size: 14px;
    font-weight: 600;
    color: #0000009c;
}

.login-form button {
    width: 100%;
    justify-content: center;
}

.last-text p {
    font-size: 15px;
    padding-top: 17px;
    margin: 0;
}

.login-page-center .img-1 {
    position: absolute;
    right: -46px;
    top: -40px;
    z-index: -1;
}

.login-page-center .img-2 {
    position: absolute;
    bottom: -80px;
    left: -70px;
    z-index: -1;
}

@media (max-width:767px) {
    .login-page-center .img-2 {
        left: 0px;
    }

    .login-page-center .img-1 {
        right: 4px;
    }

    .last-text p {
        font-size: 13px;
    }

    .login-page-center {
        padding: 30px 20px;
    }
}