/* For desktop and tablet */

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    /*height: 100vh;*/
    opacity: 0.92;
}

.login-form {
    direction: rtl;
    text-align: right;
    padding: 40px;
    border: 0px none;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 3px 11px 15px gray;
}

.input-style {
    width: 100%;
    margin-bottom: 10px;
    padding: 3%;
    border: 1px solid #ccc;
    border-radius: 10px;

}

.input-style:focus {
    outline: none !important;
    border-color: #719ECE;
    box-shadow: 0 0 10px #719ECE;
}

.btn-style {
    width: 100%;
    margin-bottom: 10px;
    padding: 3%;
    border-radius: 10px;
    color: #ffffff;
    border: 0px none;
    background-color: #0d4292;
}

.space {
    margin-top: 8%;
}

/* For mobile */
@media only screen and (min-width: 320px) and (max-width: 768px) {

    .login-container {
        display: flex;
        text-align: center;
        padding: 20px;
        border: none;
        margin: 0 auto;
        height: 100vh;
    }

    .login-form {
        direction: rtl;
        text-align: right;
        margin-bottom: 10px;
    }

    .font-small {
        font-size: small;
    }


}


@media (min-width: 1025px) and (max-width: 4000px) {
    body {
        background-image: url("/assets/img/bg.jpg");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        min-height: 100vh;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    body {
        background-image: url("/assets/img/bg.jpg");
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
        backdrop-filter: blur(0px);
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    body {
        background-image: url("/assets/img/bg.jpg");
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
        backdrop-filter: blur(0px);
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    body {
        background-image: url("/assets/img/bg.jpg");
        background-position: 30% 20%;
        background-size: cover;
        background-repeat: no-repeat;
        backdrop-filter: blur(0px);
    }
}

#DNTCaptchaInputText {
    text-align: right !important;
}