*,
*:before,
*:after{
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
html{
	width: 100%;
	height: 100%;
}
body{
	background: linear-gradient(219deg, rgb(220, 31, 118), rgb(253, 79, 44));
	width: 100%;
	height: 100%;
	padding: 90px 0;
}

/* Layout */
.ba-container{
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1200px;
}
/* Typography */
a,
input[type="submit"],
input[type="button"],
button{
	-webkit-transition: color .3s ease-in, border-color .3s ease-in, background-color .3s ease-in, opacity .3s ease-in;
	-moz-transition: color .3s ease-in, border-color .3s ease-in, background-color .3s ease-in, opacity .3s ease-in;
	transition: color .3s ease-in, border-color .3s ease-in, background-color .3s ease-in, opacity .3s ease-in;
}
input[type="submit"],
input[type="button"],
button,
.ba-button{
	display: inline-block;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select {

	-webkit-transition: color .3s ease-in, border-color .3s ease-in, background-color .3s ease-in, opacity .3s ease-in;
	-moz-transition: color .3s ease-in, border-color .3s ease-in, background-color .3s ease-in, opacity .3s ease-in;
	transition: color .3s ease-in, border-color .3s ease-in, background-color .3s ease-in, opacity .3s ease-in;
}
.form-container{
	font-family: Arial, sans-serif;
	border-radius: 4px;
	background-color:  #ffffff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
	max-width: 460px;
	min-height: 470px;
	margin: auto;
	padding: 27px 16px 0 30px;
}
.form-logo{
	float: left;
	margin-right: 10px;
}
.form-title{
	color:  #1b1c1d;
	font-size: 24px;
	font-weight: 700;
	margin: 4px 0 0 0;
	line-height: 20px;
}
.form-text{
	color:  #797b7f;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	margin: 16px 0 34px;
}
.form-text__log-in{
	color:  #ea355a;
}
.form-text__log-in:hover{
	border-bottom: 1px solid #ea355a;
}
.form{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.form__input{
	flex-grow: 1;
	border: none;
	border-radius: 4px;
	background-color:  #f0f0f0;
	height: 40px;
	font-size: 14px;
	padding-left: 14px;
	margin-bottom: 15px;
	margin-right: 14px;
}
.form__input:nth-child(3),
.form__input:nth-child(4){
	width: 400px;
}
.form__submit{
	background-color:  #ea355a;
	box-shadow: 0 3px 0 0 #bd1962;
	width: 400px;
	height: 50px;
	border: none;
	outline: none;
	border-radius: 4px;
	color:  #fff;
	font-size: 18px;
	font-weight: 700;
	margin-right: 14px;
}
.form__submit:hover{
	background-color:  #fff;
	color:  #ea355a;
	box-shadow: 0 3px 0 #bd1962;
	border-top: 3px solid #bd1962;
}
footer .form-text{
	margin: 28px 0;
}
.form-text__links{
	color:  #e52e66;
}
.form-text__links:hover{
	border-bottom: 1px solid #e52e66;
}