html, body {
	/* Убираем отступы и пустое пространство */
	height: 100%;
	margin: 0;
	padding: 0;
  }
  
  body {
	/* Предотвращаем повторение изображения */
	/*background: #0fc3f5;*/
	background: url('../css/3079.jpg') no-repeat center center fixed;
	
	/* Обеспечиваем совместимость со старыми версиями браузеров */
	-webkit-background-size: cover; /* Для Safari 3-4 */
	-moz-background-size: cover;    /* Для старых версий Firefox */
	-o-background-size: cover;      /* Для старых версий Opera */
	
	/* Стандартное свойство */
	background-size: cover;         
  }


/* начало стиля страницы авторизации и регистрации */
.form {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	/*background: rgba(75, 72, 250, 0.98);*/
	background: #2cb147f5;
	/*background: #f46b03f6;*/
	/*background: #707ed7b1;*/
	border-radius: 10px;
	border: 5px solid #fff;
}
.form h1 {
	margin: 30px 100px;
	padding: 0;
	text-align: center;
	color: #ffffff;
	font-size: 30px;
	text-transform: uppercase;
}
.input-form {
	margin: 15px 40px;
	text-align: center;
}
.input-form input {
	padding: 10px;
	width: 100%;
	color: #222;
	font-size: 20px;
	text-align: center;
	background: #ffffffc3;
	outline: none;
	border: 1px solid #fff;
	box-sizing: border-box;
	border-radius: 10px;
}
.input-form input[type="text"]:focus, .input-form input[type="password"]:focus {
	border: 1px solid #8e59fffa;
}
.input-form input[type="submit"] {
	margin-top: 20px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	border: none;
	background: #4b5ed79d;
	transition: .3s;
	border-radius: 10px;
}
.input-form input[type="submit"]:hover {
	background: #2e3983c4;
}
.form a {
	display: block;
	padding: 0 0 30px;
	text-align: center;
	color: #fff;
	text-decoration: none;
	transition: .3s;
}
.form a:hover {
	color: #0fc3f5;
}
