body{
	font-family: 'Open Sans', sans-serif;
}
input:-webkit-autofill{
	-webkit-box-shadow: 0 0 0px 1000px #ecf0f1 inset !important;
	-webkit-text-fill-color: #000 !important;
}
.container{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background-color: #ecf0f1;
}
.content{
	border-radius: 15px;
	background-color: #fff;
	width: 80%;
	min-height: 500px;
	height: 60%;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.content::before{
	content: "";
	position: absolute;
	background-color: var(--cor-principal);
	width: 40%;
	height: 100%;
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
	left: 0;
}
.title{
	font-size: 28px;
	font-weight: bold;
	/*text-transform: capitalize;*/
	color: #58af9b;
	margin-top: 4px;
}
.title-primary{
	color: #fff;
}
.description{
	font-size: 12px;
	font-weight: 300;
	line-height: 30px;
	color: #fff;
}
.description::first-letter{
	text-transform: capitalize;	
}
.description-primary{
	color: #fff;
}
.description-second{
	color: #7f8c8d;
}
/****** FORMATAÇÃO DE IMAGEM DE PERFIL NA TELA DE ALTERAÇÃO DA IMÁGEM ******/
.img-profile{
	width: 100px;
	height: 100px;
	border-radius: 50px;
	border: 5px solid #fff;
}

/****** FIRST CONTENT *******/

.first-content{
	display: flex;
	flex-wrap: wrap;
}
.first-content .second-column{
	z-index: 11;
}
.first-column{
	text-align: center;
	width: 40%;
	z-index: 10;
}
.second-column{
	width: 60%;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 48%;
}
.social-media{
	margin: 1rem 0;
}
.list-social-media{
	display: flex;
	list-style-type: none;
}

.item-social-media{
	border: 1px solid #95a5a6;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	color: #95a5a6;
}
.link-social-media:not(:first-child){
	margin-left: 15px;
}
.link-social-media:hover .item-social-media{
	background-color: #58af9b;
	color: #fff;
	border: #58af9b;
}
.link-social-media .item-social-media{
	transition: background-color .5s;
}
.form{
	display: flex;
	flex-direction: column;
	width: 55%;
}

/******* SECOND CONTENT ********/

.second-content{
	position: absolute;
	display: flex;
}
.second-content .first-column{
	order: 2;
	z-index: -1;
}
.second-content .second-column{
	order: 1;
	z-index: -1;
}
.password{
	color: #34495e;
	font-size: 14px;
	margin: 15px 0;
	text-align: center;
}
.password::first-letter{
	text-transform: capitalize;
}

.sign-up-js .content::before{
	animation: slideLeft .5s;
	z-index: 12;
}

.sign-in-js .first-content .first-column{
	z-index: -1;
}

.sign-in-js .second-content .second-column{
	z-index: 11;
}

.sign-in-js .second-content .first-column{
	z-index: 13;
}

.sign-in-js .content::before{
	left: 60%;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	animation: slideRight .5s;
	z-index: 12;
}

.sign-up-js .first-content .second-column{
	z-index: 11;
}
.sign-up-js .first-content .first-column{
	z-index: 13;
}
.sign-up-js .second-content .first-column,
.sign-up-js .second-content .second-column{
	z-index: -1;
}

.sign-in-js .first-content .second-column{
	z-index: -1;
	position: relative;
	animation: deslocaConteudoLeft .5s;
}
.sign-up-js .second-content .second-column{
	z-index: -1;
	position: relative;
	animation: deslocaConteudoRigth .5s;
}

/*CONFIGURAÇÕES PARA DISPOSITIVOS MÓVEIS*/
@media screen and (max-width: 980px){
	.container{
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100vh;
		background-color: #ecf0f1;
	}

	.content{
		width: 100%;
		height: 100%;
		border-radius: 15px;
		background-color: #fff;
		justify-content: space-between;
		align-items: center;
		position: relative;
	}

	.content::before{
		content: "";
		position: absolute;
		background-color: #679186;
		width: 100%;
		height: 48%;
		border-top-left-radius: 15px;
		border-top-right-radius: 15px;
		border-bottom-left-radius: 0px;
		top: 0;
	}

	.first-content{
		display: flex;
		flex-wrap: wrap;
	}

	.first-column{
		width: 100%;
		text-align: center;
		height: 48%;
	}

	.sign-in-js .content::before{
		/*top: 65%;*/
		height: 35%;
		left: 0;
		border-radius: 0;
	}

	.form{
		display: flex;
		flex-direction: column;
		width: 100%;
	}
	.second-column{
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		height: 48%;
	}
}
