*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	width: 100%;
	height: 100vh;
	background: #e83756;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: Ariel Rounded MT, Arial, sans-serif;
}

#container{
	width: 40%;
	height: 400px;
	background: #fff;
	box-shadow: 4px 4px 10px 4px #000;
	display: flex;
}

.container_info{
	width: 30%;
	height: 100%;
	background: #e83756;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.container_info h2{
	color: #fff;
}
.line{
	width: 70px;
	height: 5px;
	background: #fff;
}
.set{
	width: 50px;
	height: 50px;
	background: #e83756;
	border-radius: 50%;
	position: absolute;
	right: -20px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 1px 3px 2px 1px #000;
}
.set:hover{
	cursor: pointer;
	background: #ed5571;
}
.set h3{
	color: #fff;
	font-size: 25px;
}
.container_form{
	width: 70%;
	height: 100%;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
form{
	width: 70%;
	height: auto;
	display: flex;
	flex-direction: column;
}

label{
	color: #e83756;
}
input{
	width: 100%;
	height: 40px;
	margin-bottom: 5px;
	border: none;
	border-bottom: 1px solid #e83756;
}
input:focus{
	outline: none;
}
input:hover{
	border-bottom: 2px solid #e83756;
}
.btn_option{
	display: flex;
	justify-content: space-between;
}
button{
	width: 100px;
	height: 40px;
	background: #e83756;
	color: #fff;
	border: none;
	cursor: pointer;
}
button:hover{
	background-color: #e65b75;
}

.btn_option a{
	color: #000;
	text-decoration: none;
}
.btn_option a:hover{
	color: rgb(251, 12, 12);
}

/*CADSTRO*/
#container_cadastro{
	width: 50%;
	height: auto;
	background-color: #fff;
	padding: 20px;
	display: none;
	box-shadow: 3px 3px 3px #000;
}
.form_cadastro{
	width: 100%;
	height: 100%;
}

.form_cadastro h2{
	text-align: center;
	color: #e83756;
}
.form_cadastro p{
	text-align: center;
	color: rgb(46, 45, 45);
	margin-top: 10px;
}
.form_cadastro b{
	color: #6d0417;
}

.form_cadastro form{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 40px;
}

.input_form{
	width: 49%;
	height: auto;	
}
.btn_link_form{
	width: 100%;
	height: auto;
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.btn_form, .link_form{
	width: 49%;
	height: auto;	
	
}
.btn_form button{
	width: 100%;
	height: 40px;
}
.link_form p{
	text-align: left;
}
.link_form a{
	color: #000;
	text-decoration: none;
}
.link_form a:hover{
	color: #9b0823;
}


/*DESIGN RESPONSIVO*/

/*TABLET*/
@media(max-width: 820px){
	#container{
		width: 90%;
	}
	#container_cadastro{
		width: 90%;
	}
}

/*SMARTPHONE*/
@media(max-width: 512px){
	/*Esconder o container_info*/
	/*.container_info{
		display: none;
	}
	.container_form{
		width: 100%;
	}*/

	/*Colocar o container info por cima*/
	#container{
		flex-direction: column;
	}
	.container_info{
		width: 100%;
		height: 30%;
	}
	.container_form{
		width: 100%;
		height: 70%;
	}
	.set{
		right: 45%;
		bottom: -20px;
	}

	/*CADASTRO*/
	.input_form{
	width: 100%;	
	}
	.btn_form, .link_form{
		width: 100%;
	}
}
