@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap&subset=cyrillic);
@import url(https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css);
/* Тело */
html,
body {
	font-family: "Roboto", sans-serif;
	height: 100%;
	overflow: hidden;
}

.container {
	font-family: "Roboto", sans-serif;
	height: 100%;
	width: 100%;
	overflow: hidden;
	color: #000;
	background-color: #e9e5e1;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

/* Кнопки */

.btn {
	font-weight: 500;
	padding: 0.75rem 1rem;
	height: auto;
	border-radius: 0.5rem;
}

.btn-green {
	color: #fff;
	background-color: #08ae6c;
	border-color: #08ae6c;
}

.btn-green:hover {
	color: #fff;
	background-color: #079c61;
	border-color: #079c61;
}

.btn-green.focus,
.btn-green:focus {
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.0525);
}

.btn-green.disabled,
.btn-green:disabled {
	color: #fff;
	background-color: #08ae6c;
	border-color: #08ae6c;
}

.btn-green:not(:disabled):not(.disabled).active,
.btn-green:not(:disabled):not(.disabled):active,
.show > .btn-green.dropdown-toggle {
	color: #fff;
	background-color: #068b56;
	border-color: #068b56;
}

.btn-green:not(:disabled):not(.disabled).active:focus,
.btn-green:not(:disabled):not(.disabled):active:focus,
.show > .btn-green.dropdown-toggle:focus {
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.0525);
}

.btn-blue {
	color: #fff;
	background-color: #01bcf3;
	border-color: #01bcf3;
}

.btn-blue:hover {
	color: #fff;
	background-color: #00a9da;
	border-color: #00a9da;
}

.btn-blue.focus,
.btn-blue:focus {
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.0525);
}

.btn-blue.disabled,
.btn-blue:disabled {
	color: #fff;
	background-color: #01bcf3;
	border-color: #01bcf3;
}

.btn-blue:not(:disabled):not(.disabled).active,
.btn-blue:not(:disabled):not(.disabled):active,
.show > .btn-blue.dropdown-toggle {
	color: #fff;
	background-color: #0096c2;
	border-color: #0096c2;
}

.btn-blue:not(:disabled):not(.disabled).active:focus,
.btn-blue:not(:disabled):not(.disabled):active:focus,
.show > .btn-blue.dropdown-toggle:focus {
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.0525);
}

/* Поля ввода */

.form-control {
	padding: 0.75rem 1rem;
	height: auto;
	border-radius: 0.5rem;
	border: 1px solid rgba(0, 0, 0, 0.125);
}

.form-control:focus {
	color: #000;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.25);
	outline: 0;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.0525);
}

.custom-control-input:checked ~ .custom-control-label::before {
	color: #fff;
	border-color: #01bcf3;
	background-color: #01bcf3;
}

.custom-control-input:focus ~ .custom-control-label::before {
	box-shadow: 0 0.125rem 1rem rgba(1, 188, 243, 0.125);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
	border-color: #99e4fa;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
	color: #fff;
	background-color: #b2eafb;
	border-color: #b2eafb;
}

/* Логотип */

.logo {
	position: absolute;
	z-index: 1;
	display: block;
	right: 50%;
	top: 50%;
	width: 6rem;
	height: 6rem;
	background-image: url(../img/logo.svg);
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: -222px;
	margin-right: -3rem;
	-webkit-transition: all 0.75s ease;
	-moz-transition: all 0.75s ease;
	-o-transition: all 0.75s ease;
	transition: all 0.75s ease;
}

.active .logo {
	top: -50vh;
	width: 200vh;
	height: 200vh;
	margin: 0;
	-webkit-transform: rotate(-87deg);
	-moz-transform: rotate(-87deg);
	-ms-transform: rotate(-87deg);
	-o-transform: rotate(-87deg);
	transform: rotate(-87deg);
}

/* Приветствие */

.welcome {
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	display: block;
	width: 480px;
	height: auto;
	text-align: center;
	margin: -106px 0 0 -240px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.active .welcome {
	opacity: 0;
	-webkit-transform: scale(0.75) translateY(-250px);
	-moz-transform: scale(0.75) translateY(-250px);
	-ms-transform: scale(0.75) translateY(-250px);
	-o-transform: scale(0.75) translateY(-250px);
	transform: scale(0.75) translateY(-250px);
}

.welcome > h1 {
	font-weight: bold;
	margin-bottom: 1.2rem;
}

.welcome > p {
	margin-bottom: 1.2rem;
}

.welcome > .btn {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.125);
}

/* Форма */

.form {
	position: relative;
	width: 480px;
	z-index: -1;
	background: #fff;
	border-radius: 0.5rem;
	padding: 1.75rem;
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.125);
	margin: 50% auto 0;
	-webkit-transform: scale(1.75);
	-moz-transform: scale(1.75);
	-ms-transform: scale(1.75);
	-o-transform: scale(1.75);
	transform: scale(1.75);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.active .form {
	z-index: 3;
	visibility: visible;
	opacity: 1;
	margin-top: 0;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}

.form h1 {
	font-weight: bold;
	margin-bottom: 1.2rem;
}

.form .form-group > label {
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.form .form-group,
.form > .alert {
	margin-bottom: 1.2rem;
}

.form > .alert {
	border: 0;
	margin: 0 -1.75rem 1.2rem;
	padding: 1rem 1.75rem;
	border-radius: 0;
	box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.0525);
}

.form > .alert > .close > span {
	text-shadow: none;
	background-color: rgba(0, 0, 0, 0.25);
	display: inline-block;
	padding: 0;
	width: 1.5rem;
	height: 1.5rem;
	line-height: 1.5rem;
	font-size: 0.75em;
	vertical-align: top;
	border-radius: 50%;
}

body{
	background-color:#e9e5e1 !important;
}
.v-ui.v-scrollable .container .form{
	margin-top:100px;
}
body > .v-app > .v-ui {

	background-color:#e9e5e1 !important;
}