/*
 *  Document   : login.css
 *  Author     : Seffy Theme
 *  Description: login form related stylesheet
 */

body {
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
    margin: 0;
    color: #666666;
    font-family: 'RobotoDraft', 'Roboto', sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Form Title */
.form-title{
    padding: 20px 0;
    text-align: center;
    letter-spacing: 2px;
    color: #0060C4;
}
.form-title h1 {
    margin: 0 0 20px;
    font-size: 38px;
    font-weight: 300;
}
.form-title span {
    font-size: 12px;
}
.form-title span .fa {
    color: #33b5e5;
}
.form-title span a {
    color: #33b5e5;
    font-weight: 600;
    text-decoration: none;
}

.login-container{
    position: relative;
/*    background-image: url("../img/bg/login.jpg");*/
    width: 70%;
    background-size: cover;
    object-fit: cover;
    margin: 10px auto;
    margin-top: 100px !important;
    padding-bottom: 30px;
    height: 600px;
}
.login-form-left{
    background-image: url("../uploads/logo.jpg");
    background-size: cover;
    object-fit: cover;
    border: 0.5px;
    border-style: solid;
    border-color: #000;
	border-right:0px;
    text-align: center;
    border-radius: 0px !important;
    height: 96% !important;
    width: 40%;
    float: left;
}
.login-form-right {
    float: left;
    border: 0.5px;
    border-style: solid;
    border-color: #000;
    border-left: 0;
    text-align: center;
    border-radius: 0px !important;
    /*border-bottom-right-radius: 60px;*/
    /*background-image: url("../img/bg/login-right.jpg");*/
    height: 96%;
    /*margin-left: -20px;*/
    width: 55%;
}
/* Login Form */
#loginLeft,#loginRight{
    padding: 0;
}
.login-form {
    padding: 50px;
    height: 100%;
    color:#ffffff;
}
.login-form .toggle {
    border-top-right-radius: 20px;
    cursor: pointer;
    position: absolute;
    top: -0;
    right: -0;
    background: #33b5e5;
    width: 50px;
    height: 45px;
    margin: -5px 0 0;
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    padding: 5px 5px 0;
}
.login-form .form {
    display: none;
    padding: 20px;
}
.login-form .form:nth-child(2) {
    display: block;
}
.reset
{
    display:none;
}
.login-form h2 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}
.login-form input,.login-form select {
    /*outline: none;*/
    /*display: block;*/
    width: 70%;
    border: 1px solid #d9d9d9;
    margin: 0 40px 20px;
    padding: 10px 20px;
    box-sizing: border-box;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    color: #0072BB;
    background-color: #E9E9E9;
    height: 50px;
    font-size: 20px;
}
.login-form button {
    width: 70%;
    cursor: pointer;
    font-size: 20px;
    padding: 10px;
    border-radius: 0px;
    color: #FFF;
    margin-bottom: 10px;
    background: #0072BB;
}
.formRegister input,.formRegister select{
    padding: 5px 10px;
    margin-bottom: 10px;
    height: 35px;
    font-size: 15px;
}
.formRegister{
    margin:0 !important;
	padding-left:0 !important;
}
input::placeholder {
    color: #0072BB;
}
.login-form button:hover {
    color: #FFF;
    background: #0072BB;
}
.login-form .forgetPassword {

    padding-top: 10px;
    box-sizing: border-box;
    color: #666666;
    font-size: 12px;
    text-align: center;
}
.login-form .forgetPassword a {
    font-size: 15px;
    text-decoration: none;
}

/* Custom Checkboxe */
.checkbox {
    padding-left: 20px; }
.checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 5px; }
.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 0px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out; }
.checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 11px;
    color: #555555; }
.checkbox input[type="checkbox"] {
    opacity: 0; }
.checkbox input[type="checkbox"]:focus + label::before {
    outline: thin;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
.checkbox input[type="checkbox"]:checked + label::after {
    font-family: 'FontAwesome';
    content: "\f00c"; }
.checkbox input[type="checkbox"]:disabled + label {
    opacity: 0.65; }
.checkbox input[type="checkbox"]:disabled + label::before {
    background-color: #eeeeee;
    cursor: not-allowed; }
.checkbox.checkbox-inline {
    margin-top: 0; }

.checkbox-primary input[type="checkbox"]:checked + label::before {
    background-color: #33b5e5;
    border-color: #33b5e6; }
.checkbox-primary input[type="checkbox"]:checked + label::after {
    color: #fff; }


/* Page-404 Form */
.page-404-form {
    position: relative;
    background: #ffffff;
    max-width: 320px;
    width: 330px;
    border-top: 5px solid #33b5e5;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}
.page-404-form .toggle {
    cursor: pointer;
    position: absolute;
    top: -0;
    right: -0;
    background: #33b5e5;
    width: 30px;
    height: 30px;
    margin: -5px 0 0;
    color: #ffffff;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
}

.page-404-form .toggle a{
    text-decoration: none;
}

.page-404-form .form {
    padding: 40px;
}

.page-404-form h1 {
    margin: 0 0 20px;
    color: #33b5e5;
    font-size: 90px;
    font-weight: 700;
    line-height: 1;
}
.page-404-form h3 {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1;
}
.page-404-form p {
    margin: 0 0 20px;
    font-size: 12px;
    line-height: 1;
}

.page-404-form input {
    outline: none;
    display: block;
    width: 100%;
    border: 1px solid #d9d9d9;
    margin: 0 0 20px;
    padding: 10px 15px;
    box-sizing: border-box;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.page-404-form input:focus {
    border: 1px solid #33b5e5;
    color: #333333;
}
.page-404-form .ContactSupport {

    width: 100%;
    padding-top: 10px;
    box-sizing: border-box;
    color: #666666;
    font-size: 12px;
    text-align: center;
}
.page-404-form .ContactSupport a {
    color: #333333;
    text-decoration: none;
}


/* LockScreen Form */
.lockscreen-form {
    position: relative;
    background: #ffffff;
    max-width: 320px;
    width: 310px;
    border-top: 5px solid #33b5e5;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
}
.lockscreen-form .toggle {
    cursor: pointer;
    position: absolute;
    top: -0;
    right: -0;
    background: #33b5e5;
    width: 30px;
    height: 30px;
    margin: -5px 0 0;
    color: #ffffff;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
}

.lockscreen-form .toggle a{
    text-decoration: none;
}

.lockscreen-form .form {
    padding: 40px;
}
.lockscreen-form .imgroundcorners {
    border-radius: 0px;
    width: 150px;
    height: 150px;    
}
.lockscreen-form h1 {
    margin: 0 0 10px;
    color: #33b5e5;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}
.lockscreen-form h3 {
    margin: 10px 0 10px;
    line-height: 1;
    font-size: 18px;
    font-weight: 700;
}
.lockscreen-form p {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 1;
}

.lockscreen-form input {
    outline: none;
    display: block;
    width: 100%;
    border: 1px solid #d9d9d9;
    margin: 0 0 10px;
    padding: 10px 15px;
    box-sizing: border-box;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.lockscreen-form input:focus {
    border: 1px solid #33b5e5;
    color: #333333;
}

.lockscreen-form button {
    cursor: pointer;
    background: #33b5e5;
    width: 100%;
    border: 0;
    padding: 10px 15px;
    color: #ffffff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.lockscreen-form button:hover {
    background: #178ab4;
}
.lockscreen-form .newaccount {

    width: 100%;
    padding-top: 5px;
    box-sizing: border-box;
    color: #666666;
    font-size: 12px;
    text-align: center;
}
.lockscreen-form .newaccount a {
    color: #333333;
    text-decoration: none;
}
.white-color{
    color:#fff;
}