/*
	* Template name: Authfy - Responsive Login and Signup Page Template
	* Template URI: http://koder.top/demo/authfy/
	* Version: 1.0	
	* Author: Farhadur Rahim
	* Author URI: https://themeforest.net/user/webmechanicx
*/

/* Table of Content
==================================================
	#01. Web Fonts
	#02. Common CSS
	#03. Section Panel UI CSS
    #04. Check box UI CSS
    #05. Responsive CSS
*/

/*--------------------*/
/* Import all style */
/*--------------------*/

@import 'bootstrap.min.css';
@import 'font-awesome.min.css';
@import 'preloader.css';

/*--------------------*/
/* 01. Web Fonts */
/*--------------------*/

@import url('https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700,900');

/*--------------------*/
/* 02. Common CSS */
/*--------------------*/

body,
html {
    background-color: #f0f2f5;
    /*background-image: url('../images/computer-1867758_1920-min.jpg');*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100%;
    height: 100vh;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.6em;
    font-weight: 600;
    color: #44525f;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: #2d385e;
}

    a:focus {
        outline: none;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Titillium Web', sans-serif;
    color: #2d385e;
}

a,
a:hover,
a:focus {
    color: #ffffff;
}

.btn-primary {
    background-color: #4f77ff;
    border-color: #4f77ff;
}

    .btn-primary:hover,
    .btn-primary:active:hover,
    .btn-primary:focus,
    .btn-primary:active:focus,
    .btn-primary:active,
    .btn-primary.active {
        background-color: #486ff2;
        border-color: #486ff2;
    }

.authfy-login .btn.btn-lg {
    border-radius: 3px;
    box-shadow: 0px 2px 3px #9c9c9c;
}

.brand-logo {
    margin-top: 0px;
    margin-bottom: 9px;
}

/*--------------------*/
/* 03. Section Panel UI CSS */
/*--------------------*/

.authfy-container {
    margin-top: 130px;
    margin-bottom: 95px;
}

.authfy-panel-left {
    background-color: rgba(38, 43, 72, 0.92);
    color: #ffffff;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -webkit-box-shadow: 0px 3px 6px #1d2030;
    box-shadow: 0px 3px 6px #1d2030;
}

.authfy-panel-right {
    background-color: #ffffff;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    -webkit-box-shadow: 0px 2px 6px 0px #1d2030;
    box-shadow: 0px 2px 6px 0px #1d2030;
}

.authfy-login,
.authfy-panel-left .brand-col {
    height: 460px;
}

.authfy-panel-left .brand-col {
    display: table;
    width: 100%;
    padding: 11px;
    text-align: center;
}

    .authfy-panel-left .brand-col .headline {
        display: table-cell;
        vertical-align: middle;
    }

        .authfy-panel-left .brand-col .headline h1,
        .authfy-panel-left .brand-col .headline h2,
        .authfy-panel-left .brand-col .headline h3 {
            color: #fff;
            font-size: 48px;
            font-weight: 700;
        }

.authfy-login {
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
}

.authfy-panel {
    padding: 20px 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .5s ease;
    opacity: 0;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
}

    .authfy-panel .authfy-heading {
        margin-bottom: 30px;
    }

.authfy-login .auth-title {
    font-weight: 700;
}

.authfy-login .authfy-panel.active {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.brand-col .social-buttons a {
    color: #ffffff;
    margin-top: 15px;
}

    .brand-col .social-buttons a:hover {
        color: white;
        opacity: 0.9;
    }

.brand-col .social-buttons .btn-facebook {
    background: #3b5998;
}

.brand-col .social-buttons .btn-twitter {
    background: #00aced;
}

.brand-col .social-buttons .btn-google {
    background: #c32f10;
}

.brand-col .social-buttons a > span {
    padding-left: 5px;
}

.panel-login {
    margin-top: 20px;
}

    .panel-login .remember-row {
        margin-bottom: 10px;
    }

        .panel-login .remember-row label {
            font-weight: normal;
            position: relative;
            cursor: pointer;
            color: #666;
            padding-left: 24px;
        }

.authfy-login .forgotPwd {
    text-align: right;
    margin-top: 10px;
}

.panel-login .form-control,
.panel-signup .form-control,
.panel-forgot .form-control {
    background-color: #fff;
    color: #333333;
    font-size: 14px;
    height: 45px;
    margin-bottom: 20px;
    padding: 12px 22px;
    border-radius: 3px;
    border: solid 1px #bcc2ce;
    outline: none;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0,0,0,0.1),0 0 2px 0 rgba(0,0,0,0.1);
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.1),0 0 2px 0 rgba(0,0,0,0.1);
}

.authfy-panel.panel-forgot {
    padding-top: 40px;
}

.panel-login .form-control:focus,
.panel-signup .form-control:focus,
.panel-forgot .form-control:focus {
    border-color: #4f77ff;
    z-index: 2;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}

.pwdMask {
    position: relative;
}

    .pwdMask .pwd-toggle {
        color: #cccccc;
        position: absolute;
        z-index: 2;
    }

.panel-login .pwdMask .pwd-toggle,
.panel-signup .pwdMask .pwd-toggle {
    top: 15px;
    right: 15px;
}

.pwdMask .pwd-toggle:hover,
.pwdMask .pwd-toggle:focus {
    cursor: pointer;
}

.pwdMask .pwd-toggle:hover,
.pwdMask .pwd-toggle:focus,
.pwdMask .pwd-toggle.fa-eye {
    color: #4f77ff;
}

.panel-signup .term-policy a {
    text-decoration: underline;
}

/*--------------------*/
/* 04. Check box UI CSS */
/*--------------------*/

.checkbox input[type="checkbox"] {
    position: absolute;
    right: 9000px;
}

    .checkbox input[type="checkbox"] + .label-text:before,
    .checkbox input[type="checkbox"] + .label-text:after {
        font-size: 11px;
        display: inline-block;
        width: 17px;
        height: 17px;
        padding: 2px;
        margin-left: 0;
        position: absolute;
        top: 2px;
        left: 0;
    }

    .checkbox input[type="checkbox"] + .label-text:before {
        content: "";
        background-color: #ffffff;
        border: 1px solid #ced4da;
        border-radius: 3px;
        cursor: pointer;
        -webkit-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 input[type="checkbox"] + .label-text:after {
        background-color: #4f77ff;
        color: #ffffff;
        border-radius: 2px;
        border-color: #4f77ff;
        line-height: 1.4;
    }

.checkbox input[type="checkbox"] {
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}

    .checkbox input[type="checkbox"]:focus + .label-text:before {
        outline: thin dotted;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

    .checkbox input[type="checkbox"]:checked + .label-text:after {
        font-family: "FontAwesome";
        content: "\f00c";
    }

/*--------------------*/
/* 05. Responsive CSS */
/*--------------------*/

@media (min-width: 768px) {

    .authfy-panel {
        padding: 0px 0px;
    }
}

@media (max-width: 767px) {

    .authfy-panel-left,
    .authfy-panel-right {
        box-shadow: none;
    }

    .authfy-panel-left {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .authfy-panel-right {
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }


    .authfy-panel-left .brand-col {
        height: 300px;
        text-align: center;
    }

    .term-policy {
        font-size: 75%;
    }
}

@media (min-width: 320px) and (max-width: 412px) {

    .authfy-login .authfy-panel {
        padding: 20px;
        max-height: 426px;
    }

    .authfy-container {
        margin-top: 85px;
        margin-bottom: -38px;
    }

    .panel-login .remember-row {
        margin-bottom: 10px;
        font-size: 14px;
    }
}

@media (max-width: 412px) {
    .authfy-login {
        height: 480px;
        margin-top: -65px !important;
    }

    .authfy-heading p {
        font-size: 14px;
    }

    .remember-row .col-sm-6 {
        width: 100%;
    }

    .authfy-login .forgotPwd {
        text-align: left;
        margin-top: 0px;
    }

    .Panel-login {
        margin-top: 0px;
    }
}

.nav {
    width: 100%;
    margin-bottom: 20px;
}

    .nav li {
        font: 90%/1.618 "Source Sans Pro";
        z-index: 0;
        background: rgb(44, 48, 77);
        width: 96px;
        color: #fff;
        font-size: 17px;
        line-height: 6px;
        padding: 5px 1px;
        flex: 1 1 auto;
        margin-left: 4px !important;
        -moz-border-radius: 50px;
        border-radius: 0px;
        float: left;
        cursor: pointer;
        z-index: 1;
        text-align: center;
    }

    .nav .active {
        background: white;
        box-shadow: 0px 0px 2px 1px #000;
    }

@media (max-width: 412px) {
    .nav li {
        font: 90%/1.618 "Source Sans Pro";
        z-index: 0;
        background: rgb(44, 48, 77);
        width: 84px;
        color: #fff;
        font-size: 17px;
        line-height: 6px;
        padding: 5px 1px;
        flex: 1 1 auto;
        margin-left: 4px !important;
        -moz-border-radius: 50px;
        border-radius: 0px;
        float: left;
        cursor: pointer;
        z-index: 1;
        text-align: center;
    }
}
.card0 {
    box-shadow: 0px 4px 8px 0px #757575;
    border-radius: 0px;
}
.border-0 {
    border: 0 !important;
}
.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}
.pb-5, .py-5 {
    padding-bottom: 3rem !important;
}
.border-line {
    border-right: 1px solid #EEEEEE;
}
.pl-3, .px-3 {
    padding-left: 1rem !important;
}
.bg-blue {
    color: #fff;
    background-color: #f05d3c;
}
.pb-4, .py-4 {
    padding-bottom: 1.5rem !important;
}
@media (min-width: 1200px) {
    .pl-xl-5, .px-xl-5 {
        padding-left: 3rem !important;
    }
}
@media (min-width: 1200px) {
    .pr-xl-5, .px-xl-5 {
        padding-right: 3rem !important;
    }
}
body {
    color: #000;
    overflow-x: hidden;
    height: 100%;
    background-color: #e7e7e7;
    background-repeat: no-repeat;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-family: Arial, Helvetica, sans-serif;
}
.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}
@media (min-width: 1200px) {
    .pl-xl-5, .px-xl-5 {
        padding-left: 3rem !important;
    }
}
@media (min-width: 1200px) {
    .pr-xl-5, .px-xl-5 {
        padding-right: 3rem !important;
    }

}
@media (min-width: 600px) {
    .te {
        text-align:right
    }
    .te1 {
        text-align:left
    }
}
.pt-5, .py-5 {
    padding-top: 3rem !important;
}
.logo {
    width: 200px;
   
    margin-top: 20px;
    margin-left: 35px;
}.image {
    width: 478px;
    /* height: 280px; */
}
 .justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
    text-align: center;
}
 .card2 {
    margin: 0px 40px;
}
 .mb-4, .my-4 {
    margin-bottom: 1.5rem !important;
}

 small, .small {
    font-size: 80%;
    font-weight: 400;
}
 .text-sm {
    font-size: 14px !important;
}
 media (min-width: 576px)
.ml-sm-auto, .mx-sm-auto {
    margin-left: auto !important;

}
 .form-group {
    margin-bottom: 0px;
    text-align: left;
}
 label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 600;
}
 .text-danger {
    color: #f05d3c;
    font-weight: 600;
    text-decoration: underline;
}