:root {
    --body-color: #ecf4ff;
    --login-bg: rgba(255, 255, 255, 0.67);
}

input::-ms-reveal,
input::-ms-clear {
    display: none;
}

@font-face {
    font-family: 'Roboto';
    src: url('../Plugin/Font-Family/Roboto/Roboto-Light.ttf');
}



body {
    height: 100vh;
    background-image: url(../images/loginbackground.jpg);
    /*background-color: var(--oz-wave-color);*/
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    /*font-weight:200;*/
    
}

input{
    font-size:0.9rem;
}

.login {
    position: absolute;
    top: 20%;
    left: 20%;
    transform: translate(-20%, -20%);
    width: 60%;
    transform: scale(1.1);
    height: 400px;
    border-radius: 5px;
    background-color: var(--login-bg);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.description {
    position: relative;
    width: 100%;
    height: 120%;
    padding: 20px;
    margin-top: -8%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #003153;
    border-radius: 3px;
    background: var(--oz-wave-color) url(../images/body.jpg);
    background-position: center;
    background-size: cover;
    z-index: 10;
}

.description img {
    border-radius: 5px;
    z-index: 100;
}

.description .des-text {
    margin-top: 22px;
    font-size: 14px;
    line-height: 25px;
    font-weight: 500;
}

.loginForm {
    position: absolute;
    right: 20%;
    top: 18%;
}

.forgotPassword {
    position: absolute;
    right: 5%;
    top: 9%;
    width: 90%;
    text-align: center;
    z-index: 1;
}

.password-content img {
    margin-bottom: 6px;
}

.password-content h5 {
    margin-bottom: 20px;
}

.password-content p {
    font-size: 14px;
    line-height: 30px;
}

.signUp {
    position: absolute;
    right: 5%;
    top: 8%;
    width: 90%;
    z-index: 1;
}

    .signUp .register-content {
        text-align: center;
        font-size: 15px;
    }

    .signUp .register-content {
        text-align: center;
        font-size: 15px;
    }

.register-content img {
    margin-bottom: 10px;
}

.register-content h5 {
    margin-bottom: 20px;
}

.register-content p {
    font-size: 14px;
    line-height: 30px;
}

.btns {
    position: absolute;
    bottom: 10px;
    right: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.btns p {
    display: inline;
    padding: 0;
    margin: 0;
    font-size: 11px;
}

.btns .f-l a {
    margin-right: 10px;
    font-size: 11px;
    color: rgb(105, 84, 84);
}

.LoginMessage{
    color: red;
    font-size: 11px;
    margin-top: 6px;
    font-weight: 600;
    letter-spacing: .3px;
}

.powered {
    font-size: 11px;
}

.powered {
    margin: 0;
    font-size: 11px;
    color: #886868;
    letter-spacing: .3px;
}

.powered a {
    color: var(--oz-sidebar-active-bg-color);
}

.loginForm p a,
.signUp p a {
    display: inline;
    color: #333;
    font-size: 13px;
    text-decoration: none;
}

.login form {
    width: 300px;
    padding: 10px 20px 20px 20px;
    display: block;
}

.loginForm h3 {
    font-size: 28px;
    margin: 0;
    margin-bottom: 20px;
    color: #0B4F6C;
}

.loginForm i {
    position: absolute;
    top: 21%;
    right: 5%;
    font-size: 13px;
}

.login form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #3333;
    background-color: transparent;
    padding: 7px 17px;
    margin-bottom: 30px;
    outline: none;
}

.login form button {
    width: 55%;
    border: none;
    color: #333;
    border-radius: 20px;
    padding: 8px 5px;
    font-size: 13px;
    outline: none;
    cursor: pointer;
    margin-top: 10px;
    background-color: #dddcdd77;
    border: 1px solid #0B4F6C;
    transition: all .3s;
}

    .login form button:hover {
        border: 1px solid #0B4F6C;
        color: #fff;
        background-color: #0B4F6C;
    }

.fade-left {
    transition: all .3s;
    transform: translate(-420px);
    z-index: 1;
    opacity: 0;
}

.fade-in {
    transition: all .3s;
    transform: translate(0);
    opacity: 1;
    z-index: 10;
}

.mob-logo {
    display: none;
}


@media (max-width: 1000px) {

    .login {
        width: 60%;
        top: 10%;
        height: 550px;
        overflow-x: hidden;
    }

    .description {
        display: none;
    }

    .description .des-text {
        margin-top: 10px;
        font-size: 12px;
    }

    .login form {
        width: 100%;
    }

    .loginForm {
        width: 80%;
        position: absolute;
        top: auto;
        right: auto;
        margin-left: 7%;
        margin-right: auto;
    }

    .signUp {
        width: 80%;
        position: absolute;
        top: auto;
        right: auto;
        margin-left: 7%;
        margin-right: auto;
    }

    .forgotPassword {
        width: 80%;
        position: absolute;
        top: auto;
        right: auto;
        margin-left: 7%;
        margin-right: auto;
    }

    .signUp .register-content img {
        display: none;
    }

    .mob-logo {
        width: 150px;
        margin: 30px auto 40px auto;
        display: block;
    }

    .loginLeftContant {
        display: none;
    }


    #forget-pass, #user-register {
        display: none;
    }
}

@media (max-width: 768px) {

    .signUp p,
    .forgotPassword p {
        font-size: 13px;
        line-height: 20px;
    }

    .loginForm, .signUp, .forgotPassword {
        width: 85%;
        margin-left: 3%;
    }

        .loginForm form, .signUp form, .forgotPassword form {
            width: 100%;
            padding: 20px 0;
            margin: 0 !important;
        }

    .btns p a,
    .powered p {
        font-size: 10px;
    }
}

@media (max-width: 500px) {
    .login {
        left: 2px;
        width: 95%;
    }

    .btns p a {
        margin-right: 5px;
    }

    .btns {
        text-align: center;
        flex-flow: column;
    }

        .btns .f-l {
            top: -30px;
            width: 95%;
            position: absolute;
            margin-bottom: 15px;
        }
}

.LoginError{
    display:none;
}
