body{
    background: #f4f4f4;
}
.form_auth{
	display: flex;
	align-items: center;
	justify-content: center;
}
.form_all{
	margin: 20px;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
	padding: 10px 10px 10px 10px;
	min-width: 300px;
	background: #ffffff;
	border-radius: 4px;
}
.header_auth{
	text-align: center;
	margin-bottom: 20px;
}
.form_group{
	margin-bottom: 10px;
}
.form_group label{
    display: block;
    margin-bottom: 7px;
    text-align: left;
}
.form_group:not(.check_remember) input{
	display: block;
	width: 100%;
}
.form_group .invalid{
	background: #FF9898;
}
.form_group .invalid-feedback{
	color: #CC0000;
}
.check_remember label{
	display: inline;
	margin-left: 7px;
}
.button_auth{
	margin-bottom: 15px;
}
.button_auth input{
	text-align: center;
	font-size: 18px;
	padding: 2px 5px;
	width: 100%;
	color: white;
	background-color: #278c21;
    border: 1px solid rgba(27,31,35,.15);
    border-radius: 5px;
}
.button_auth input:hover{
	background-color:#2ea44f;
}
.link_reg_rec{
	text-align: right;
}