/******** Login ********/
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #6b88ff, #4ec4b1);
    animation: gradientAnimation 10s ease infinite;
    background-size: 400% 400%;
}
.logo {
    text-align: center;
    margin-bottom: 1.2em;
    font-size: 2.2em;
    font-weight: bold;
    color: #fff;
    -webkit-text-fill-color: #fff;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
	
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.singin  {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
 
    background-size: cover;
    will-change: transform;
    z-index: -1;	
}


.container {
    padding-bottom: 75px;
}
	
.container-fluid {
	padding-bottom: 75px;
}

.auth-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    color: #fff;
}

.auth-main, body, html {
    height: 100%;
}
.auth-block {
    width: 540px;
    margin: 0 auto;
    border-radius: 5px;
    background: #fff;
    color: #818182;
    padding: 32px;
}

.auth-block h1 {
    font-weight: 300;
    margin-bottom: 28px;
    text-align: center;
}

.auth-block .form-group {
    margin-bottom: 12px;
}

.form-horizontal label {
    line-height: 34px;
    margin-bottom: 0;
    padding-top: 0!important;
}

.btn-singin {
	width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, #6b88ff, #4ec4b1);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}


a.forgot-pass {
    display: block;
    text-align: right;
    margin-bottom: -20px;
    float: right;
    z-index: 2;
    position: relative;
}

.auth-block a {
    text-decoration: none;
    outline: 0;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    color: #209e91;
}

a {
    -webkit-transition: color .5s ease;
    transition: color .5s ease;
    outline: 0!important;
}

/* checkbox dashboard */


.material-switch > input[type="checkbox"] {
    display: none;   
}

.material-switch > label {
    cursor: pointer;
    height: 0px;
    position: relative; 
    width: 40px;  
	float:right;
	margin-top: -8px;
}

.material-switch > label::before {
    background: rgb(0, 0, 0);
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    content: '';
    height: 16px;
    margin-top: -8px;
    position:absolute;
    opacity: 0.3;
    transition: all 0.4s ease-in-out;
    width: 40px;
}
.material-switch > label::after {
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    content: '';
    height: 24px;
    left: -4px;
    margin-top: -8px;
    position: absolute;
    top: -4px;
    transition: all 0.3s ease-in-out;
    width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
    background: inherit;
    opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label::after {
    background: inherit;
    left: 20px;
}

/* footer */
.footer{
font-family: Arial,Helvetica,sans-serif;
font-size: 12px;
line-height: 14px;
color: #909090;
text-align:center;
padding-bottom:15px;

}
.footer a{
	font-weight: bold;
}

/* ajax loading */
#loading {
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 ) 
                url('../img/ajax-loading.gif') 
                50% 50% 
                no-repeat;
}
body.loading #loading {
    overflow: hidden;   
}
body.loading #loading {
    display: block;
}