.box {
	display: flex;
	text-align: center;
    justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.box-user,
.box-info,
.box-recover-info {
	display: flex;
    flex-direction: column;
    align-items: center;
	border-radius: 25px;
	padding: 40px;
	max-width: 500px;
    width: 100%;
	height: 300px;
    justify-content: space-between;
}
.box-info.box-info-teacher,
.box-recover-info {
	justify-content: center;
}
.box-user {
	background-color: #699CC6;
}
.box-info {
	position: relative;
	background-color: #eaeaea;
}
.box-user.error {
	background-color: #D40000;
}
.box-user .form {
	display: flex;
    flex-direction: column;	
	max-width: 250px;
    width: 100%;
}
.recover .box-user .form {
	max-width: 360px;
}
.box-user .input {
	margin-bottom: 10px;
}
.box-user .input input {
	border: none;
    border-radius: 15px;
    padding: 7px 20px;
}
.recover .box-user .input input {
	margin-top: 12px;
}
.box-user .input input::placeholder {
	text-align: center;
}
.box-user .pie button {
    border: none;
    color: #FFFFFF;
    font-weight: bolder;
    font-size: 15px;
    background-color: #030616;
    padding: 5px 40px;
    border-radius: 20px;
	margin-top: 5px;
    margin-bottom: 20px;
}
.box-user .pie p {
	margin-bottom: 0;
}
.box-user a {
	color: #ffffff;
	font-weight: bolder;
	font-size: 13px;
}	
.box-user .form h3 {
	color: #fff !important;
	margin: 0;
	margin-bottom: 30px;
	font-size: 20px;
	font-family: 'Bitter', serif;
    font-weight: bold;
}	
.box-info .btn-signin,
.box-info .btn-buy,
.box-info .btn-coupon {
	display: flex;
	border-radius: 20px;
	width: 300px;
    text-align: center;
	height: 40px;
    justify-content: center;
    align-items: center;
	text-decoration: none;
	margin-bottom: 10px;
}
.box-info .btn-signin {
    background-color: #fff;
    font-family: 'Bitter', serif;
    font-size: 18px;
	color: #375e77;
	font-weight: bold;
}
.box-info .btn-buy {
	background-color: #fb8332;
	color: #fff;
	font-weight: 500;
}
.box-info .btn-buy.extra {
	width: 380px;
}
.box-info .btn-coupon {
	background-color: #030616;
	color: #fff;
	font-weight: 500;
}
.help-zone {
	position: absolute;
    right: 30px;
    bottom: 15px;
}
.help-zone a {
	display: flex;
	align-items: center;
	color: #8c8c8c;
	font-size: 13px;
}
.help-zone a img {
	margin-left: 10px;
}
.extra-help {
	color: #8c8c8c;
    padding: 20px 40px;
    max-width: 500px;
}
.extra-help a {
	color: #8c8c8c;
}
@media (max-width: 991px) {
	.recover .box-user {
		height: 350px;
	}
	.recover .box-user .form {
		max-width: 250px;
	}
	.recover .box-user .form h3 {
		margin-bottom: 20px;
	}
}
@media (max-width: 425px ) {
	.box-user,
	.box-info {
		padding: 40px 20px;
	}
	.box-info .btn-signin,
	.box-info .btn-buy,
	.box-info .btn-coupon {
		width: 100%;
		padding: 8px;
		height: auto;
	}
	.box-info .btn-buy.extra {
		width: 100%;
	}
}