/* Copyright 2016 Hafisoft Technologies
 * License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). */

@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,600&subset=latin,vietnamese);

@font-face {
    font-family: Roboto;
    src: url(/v9c_backend_theme/static/src/font/Roboto-Regular.ttf)
}

.educadoo-login {
    width: 100%;  
	min-height: 100vh;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 15px;
	position: relative;
	z-index: 1;	
	font-family: "Roboto", "Helvetica Neue", Helvetica, Arial;
	background: transparent url('/v9c_backend_theme/static/src/img/3px-tile.png') repeat;
}

.educadoo-login:before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #ffffff;
	background: -webkit-linear-gradient(bottom, #a5dff4, #ffffff);
	background: -o-linear-gradient(bottom, #a5dff4, #ffffff);
	background: -moz-linear-gradient(bottom, #a5dff4, #ffffff);
	background: linear-gradient(bottom, #a5dff4, #ffffff);
	opacity: 0.9;
}

.educadoo-login-wrap {
	width: 450px;
	position: relative;
	border: 1px solid #dadce0;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	background: #fff;
	box-shadow: 1px 1px 10px -1px rgba(123, 181, 204, 0.7);
	-webkit-box-shadow: 1px 1px 10px -1px rgba(123, 181, 204, 0.7);
	-moz-box-shadow: 1px 1px 10px -1px rgba(123, 181, 204, 0.7);
}
.educadoo-login-form {
	padding: 48px 40px;	
	color: #202124;	
}
.educadoo-login-brand img {
	display: block;
	width: auto;
	height: auto;
	max-width: 200px;
	max-height: 120px;
	margin: 0 auto;
}
.educadoo-login-header {
	font-size: 16px;
	font-weight: 100;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 40px;
}
.educadoo-login-header h1 {
	font-size: 22px;
	font-weight: 400;
}
.educadoo-login-header .educadoo-user-avatar {
	padding: 2px;
	border: 1px solid #dadce0;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	text-align: center;
	box-shadow: 1px 1px 10px -1px rgba(136, 136, 136, 0.7);
}
.educadoo-login-header .avatar-lg {
	width: 92px;
	margin: 0 auto;
}
.educadoo-login-header .avatar-sm {
	display: inline-block;
	width: 34px;
	margin: 0 10px 0 0;
}
.educadoo-login-header .educadoo-user-avatar img {
	width: 100%;
	border-radius: 50%;
}
.educadoo-form-group {
	position: relative;
	padding: 0px 2px;
	font-size: 14px;
	font-weight: 100;
	margin-bottom: 20px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}
.educadoo-form-border {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 48px;
	border: 1px solid #dadce0;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	transition: border-color 250ms, border-width 250ms;
	-webkit-transition: border-color 250ms, border-width 250ms;
	-moz-transition: border-color 250ms, border-width 250ms;
}
.educadoo-form-group.highlight .educadoo-form-border {
	border: 2px solid #1a73e8;	
}
.educadoo-form-group.error .educadoo-form-border {
	border: 2px solid #d93025;
}
.educadoo-form-label {
	width: auto;
	position: absolute;
	top: 15px;
	left: 8px;
	z-index: 1;
	font-size: 14px;
	font-weight: 400;
	background: #fff;
	color: #80868b;
	padding: 0 8px;
	transition: top 250ms;
	-webkit-transition: top 250ms;
	-moz-transition: top 250ms;
}
.educadoo-form-group.focus .educadoo-form-label {
	top: -8px;
	font-size: 13px;
	font-weight: 300;
}
.educadoo-form-group.highlight .educadoo-form-label {
	color: #1a73e8;
}
.educadoo-form-control {
	position: relative;
	width: 100%;
	height: 37px;
	padding: 13px 15px;
	margin-top: 8px;
	direction: ltr;
	text-align: left;
	font-size: 16px;
	font-weight: 400;
	background: none;
	z-index: 1;
	border: none;
	outline: none;
	overflow: hidden;
}
.educadoo-form-control:focus {
	height: 38px;
}
.educadoo-form-control[type="password"] {	
	font-size: 20px;
}
.educadoo-form-group select {
	position: relative;
	width: 100%;
	height: 46px;
	padding: 0 10px;
	margin-top: 2px;
	font-size: 16px;
	font-weight: 400;
	background: none;	
	z-index: 1;
	border: none;
	outline: none;
}
.educadoo-form-group .input-icon {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;	
	font-size: 22px;
	color: rgba(0, 0, 0, 0.65);
	cursor: pointer;
	z-index: 99;
}
.educadoo-login-form-btn {
	padding: 0 2px 48px;
}
.educadoo-login-form-btn.bd-0 {
	padding-bottom: 0px !important;
}
.educadoo-form-alert {
	font-size: 0.9em;
	padding: 0 0 20px;
}
.educadoo-form-alert.danger {
	color: #d93025;
}
.educadoo-form-alert.success {
	color: #84c72f;
}

.educadoo-db-list {	
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 38px;
	padding: 10px 40px;
	background: #f7efc8;
	font-size: 0.95em;
	font-weight: 400;
	text-align: left;
	display: table;
	border-radius: 0 0 8px 8px;
	-webkit-border-radius: 0 0 8px 8px;
	-moz-border-radius: 0 0 8px 8px;
}
.educadoo-db-list div {
	display: table-cell;
}
.educadoo-db-list select {
	width: 94%;
    border: 1px solid #b3a669;
    background: transparent;
    margin-left: 10px;
    border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}
.educadoo-db-list select:focus {
	outline: none;
	border: 1px solid #b3a669;
}
.educadoo-login-footer {
	position: absolute;
	bottom: 20px;
	right: 0;
	padding-right: 30px;
	font-weight: 400;
	font-size: 0.85em;
}
.educadoo-login-footer a {
	vertical-align: text-bottom;
}
.educadoo-login-footer a img {
	width: 60px;
}

.tooltip {
	font-family: "Roboto", "Helvetica Neue", Helvetica, Arial;	
}

.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

@media (min-width: 601px) {
	.educadoo-login-form {
		min-height: 450px;
	}
}