* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


/* 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;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
body {
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom left, #dd2476, #ff512f);
}
.daily-form {
	max-width: 461px;
	min-height: 471px;
	min-width: 300px;
	margin: 3% auto;
	background-color: #fff;
	padding: 28px;
	border-radius: 5px;
}
.daily-form__header {
	max-width: 100%;
}
.daily-form__header h1 {
	display: inline-block;
	margin: 0 5px;
	font-size: 24px;
	vertical-align: top;
	margin-bottom: 15px;
}
.header__text {
	font-size: 13px;
	line-height: 20px;
	color: #7a7b7f;
	margin-bottom: 15px;
}
.header__text a {
	text-decoration: none;
	color: #ea355a;
}
.form {
	width: 100%;
}
.form__flnames {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.form__flnames input {
	width: 194px;
	height: 40px;
	background-color: #f0f0f0;
	border: none;
	border-radius: 3px;
	padding-left: 15px;
	margin-top: 15px;
	font-size: 14px;
	flex-grow: 1;
}
.form__flnames input:first-child {
	margin-right: 15px;
}
.form__email, .form__password {
	width: 100%;
	background-color: #f0f0f0;
	border: none;
	border-radius: 3px;
	padding-left: 15px;
	height: 40px;
	margin-top: 15px;
	font-size: 14px;
}
.form__submit {
	width: 100%;
	background-color: #ea355a;
	border-radius: 3px;
	padding-left: 15px;
	height: 53px;
	margin-top: 15px;
	border: none;
	border-bottom: 3px solid #bd1962;
	color: white;
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
}
.form__submit:hover, input:hover {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.footer {
	margin-top: 20px;
}
.footer__text {
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;
	color: #7a7b7f;
}
.footer__text a {
	text-decoration: none;
	color: #e12a6c;
}
a:hover {
	text-decoration: underline;
}



