@import url('../../public/css/blocks/header.css');

/* fonts */
@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans'), local('OpenSans'), url('/assets/public/fonts/OpenSans/OpenSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url('/assets/public/fonts/OpenSans/OpenSans-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url('/assets/public/fonts/OpenSans/OpenSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

body {
	font-family: 'Open Sans';
	padding: 0;
	background-color: #404040;
}

.anchor:after {
    content: '';
    display: block;
    clear: both;
}

.container {
	margin: 0;
	padding: 0;
	width: 100% !important;
	height: 100vh !important;
	background-color: #404040;
	color: #fff;
}


.navbar-default {
    background-color: #303030;
}

.logoIco {
	height: 80px;
	width: 100%;
	margin: 0;
	margin-bottom: 37px;
}

.logo {
	margin-left: 182px;
}

.authLogo {
	width: 149px;
	height: 141px;
	position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    fill: #00ADEE;
}

.authLogo .name {
	display: inline-block;
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.authLogo .logoChar {
	float:left;
	height: 24px;
	fill: #ffffff;
	margin: 0 3px;
	width: 17px;
}

.authLogo .logoChar svg {
	width: 17px;
	height: 24px;
}

.container .row {
	margin: 0;
}

.container .footer {
	/*padding-left: 40px;*/
	position: absolute;
	bottom: 0;
	right: 0;
    left: 0;
    text-align: center;
	height: 50px;
	font-size: 12px;
	line-height: 16px;
	color: rgba(255,255,255,0.5);
}

.container .loginBlock {
	width: 240px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #404040;
    z-index: 2;
}

.container .form-group {
	margin: 12px 0 0;
}

.container .form-group.error {
	margin: 8px 0 0;
	display: none;
}

.container .form-group.error.show {
	display: block;
}

.container .form-group.error .error-block {
	color: #CD2436;
	font-size: 11px;
	line-height: 15px;
}

.container  .form-group button {
	margin-top: 12px;
	border: 0;
	border-radius: 3px;
	background-color: #DCDFE3;
	height: 44px;
	width: 100%;
	color: #929497;
}

.container  .form-group button.active,
.container  .form-group button:hover,
.container  .form-group button:focus {
	background-color: #00ADEE;
	color: #fff;
	outline: 0;
}

.container  .form-group .form-control {
	width: 100%;
	height: 44px;
	border-radius: 0;
	border: 0;
	outline: 0;
	background-color: rgba(0, 0, 0, 0.16);
	color: rgba(255, 255, 255, 0.5);
	box-shadow: none;
}

.container  .form-group .form-control:focus,
.container  .form-group .form-control:hover {
	outline: 0;
	color: rgba(255, 255, 255, 0.9);
}

.container  .form-group .form-text:hover .form-control {
	background-color: rgba(0, 0, 0, 0.24);
}

.container  .form-group .form-control:focus {
	background-color: rgba(0, 0, 0, 0.32);
}

.container .form-text {
	position: relative;
}

.container .form-text .icon {
    width: 24px;
	height: 44px;
	font-size: 20px;
	position: absolute;
	top: 0px;
	right: 14px;
	color: rgba(255, 255, 255, 0.24);
	line-height: 44px;
	cursor: pointer;
}

.container .form-text .icon:before {
	content: "\F6CF";
    display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container .form-text.showPas .icon:before {
	content: "\F6D0";
}

.container .form-text:hover .icon,
.container .form-text:focus .icon {
	color: rgba(255, 255, 255, 0.75);
}

@-webkit-keyframes autofill {
	to {
		color: rgba(255, 255, 255, 0.9);
		background: rgba(0, 0, 0, 0.32);
	}
}

input:-webkit-autofill {
	-webkit-animation-name: autofill;
	-webkit-animation-fill-mode: both;
}

@media (max-width: 400px) {
  .logo {
  	margin-left: 30px;
  }
}