@import url('https://fonts.googleapis.com/css?family=Nunito&display=swap');

body {
    padding: 0;
    margin: 0;
    height: 100%;
    font-family: 'Nunito', sans-serif;
}

#login {
    background-color: #F8934F;
}

.loginimg {
    background-image: url(../../images/qposweb/loginimg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
}

.login-box {
    background: #fff;
    width: 400px;
    height: 600px;
    position: relative;
    top: -96%;
    /* left: 25px; */
    right: -60%;
    padding: 5px 25px;
    border-radius: 5px;
}

.login-box h4 {
    letter-spacing: 2px;
    margin-bottom: -29px;
}



#LOGIN_FORM {
    padding-top: 50px;
}

#FORGOT_FORM {
    padding-top: 50px;
}

.input-container {
    position: relative;
    margin-bottom: 25px;
}

.input-container label {
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 16px;
    color: #222;
    opacity: 0.5;
    pointer-event: none;
    transition: all 0.5s ease-in-out;
}

.input-container input {
    border: 0;
    border-bottom: 1px solid #E5E5E5;
    background: transparent;
    width: 100%;
    padding: 8px 0 5px 0;
    font-size: 16px;
    color: #222;
}

.input-container input:focus {
    border: none;
    outline: none;
    border-bottom: 1px solid #F8934F;
}

.btn {
    color: #fff;
    background-color: #F8934F;
    outline: none;
    border: 0;
    color: #fff;
    padding: 10px 20px;
    text-transform: capitalize;

    border-radius: 2px;
    cursor: pointer;
    position: relative;
    text-align: right;
}


/*.btn:after{
	content:"";
	position:absolute;
	background:rgba(0,0,0,0.50);
	top:0;
	right:0;
	width:100%;
	height:100%;
}*/

.input-container input:focus ~ label,
.input-container input:valid ~ label {
    top: -12px;
    font-size: 12px;

}

#LOGIN_FORM a {
    color: #F8934F;
    text-decoration: none;
    cursor: pointer;
}

#LOGIN_FORM a:hover {
    color: #F67A26;
    transition: 0.3s ease-in;
}

#FORGOT_FORM a {
    color: #F8934F;
    text-decoration: none;
    cursor: pointer;
}

#FORGOT_FORM a:hover {
    color: #F67A26;
    transition: 0.3s ease-in;
}

.credits {
    position: absolute;
    right: 21px;
    text-align: right;
    margin-top: 15px;
}

.credits img {
    width: 50%;
}

.credits p {
    margin-bottom: 0px;
}


.credits a {
    color: #222;
    text-decoration: none;
    cursor: pointer;
    margin-top: 0px;
}

.credits a:hover {
    color: #F67A26;
    transition: 0.3s ease-in;
}

.end-credits {
    position: absolute;
    bottom: 5px;
    left: 39px;
}

.end-credits span {
    font-size: 12px;
    opacity: 0.9;
}

.end-credits a {
    color: #222;
    text-decoration: none;
    cursor: pointer;
}

@media (min-width:1920px) {

    .login-box {
        background: #fff;
        width: 500px;
        height: 700px;
        position: relative;
        top: -85%;
        /* left: 25px; */
        right: -65%;
        padding: 5px 25px;
        border-radius: 5px;
    }

    .credits {
        position: absolute;
        right: 21px;
        text-align: right;
        margin-top: 60px;
    }

    .end-credits span {
        font-size: 16px;
        opacity: 0.9;
    }

    .btn {
        color: #fff;
        background-color: #F8934F;
        outline: none;
        border: 0;
        color: #fff;
        padding: 15px 33px;
        text-transform: capitalize;
        border-radius: 2px;
        cursor: pointer;
        position: relative;
        text-align: right;
        font-size: 17px;
        letter-spacing: 1;
    }
}