@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;	
	font-family: Arial, Raleway, sans-serif;
}

body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  flex-direction: column;
  align-items: center;
  background: #073f66;
}

.white {
  color: white;
}

.mobile {
	display: none;
}

.form-signin {
  width: 900px;
  margin: auto;
  display: flex;
  border-radius: 44px;
  background-color: #f5f5f5;
  box-shadow: 5px 5px 7px 5px #113650;
}

.div_right {
	width: 100%;
	padding: 0.7rem 1.2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.div_left img {
	margin-top: -10px;
    margin-left: -13px;
    margin-bottom: -11px;
	width: 450px;
	height: 425px;
}

.div_right .div_bottom, .div_right .div_top{
	min-height: 15%; 
}

.div_top {
	margin-bottom: 2rem;

}
.div_top h3 {
    font-size: 2rem;
	text-align: center;
}

.div_top h3, .div_top h5 {
	text-align: center;
	font-family: arial;
    font-weight: 500;
    color: #585858;
	margin: 0;
}

.div_bottom {
	width: 100%;
	display: flex;
    flex-direction: row;
    align-items: flex-end;
	justify-content: space-between;
	margin-top: 1rem;

}

.div_right .div_middle {
	height: 70%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 0.2rem;
}

.form-signin a {
  color: #073f66;
  font-weight: 500;
  text-decoration: underline;
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.screen {		
	background: linear-gradient(90deg, #5D54A4, #7C78B8);		
	position: relative;	
	height: 600px;
	width: 360px;	
	box-shadow: 0px 0px 24px #5C5696;
}

.screen__content {
	z-index: 1;
	position: relative;	
	height: 100%;
}

.screen__background {		
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);	
}

.screen__background__shape {
	transform: rotate(45deg);
	position: absolute;
}

.screen__background__shape1 {
	height: 520px;
	width: 520px;
	background: #FFF;	
	top: -50px;
	right: 120px;	
	border-radius: 0 72px 0 0;
}

.screen__background__shape2 {
	height: 220px;
	width: 220px;
	background: #6C63AC;	
	top: -172px;
	right: 0;	
	border-radius: 32px;
}

.screen__background__shape3 {
	height: 540px;
	width: 190px;
	background: linear-gradient(270deg, #5D54A4, #3C5FA6);
	top: -24px;
	right: 0;	
	border-radius: 32px;
}

.screen__background__shape4 {
	height: 400px;
	width: 200px;
	background: #7E7BB9;	
	top: 420px;
	right: 50px;	
	border-radius: 60px;
}

.login__field {
	width: 75%;
	position: relative;	
}

.login__icon, .see__icon {
	position: absolute;
	top: 16px; 
	color: #073f66;
}

.see__icon {
	right: 0;
	cursor: pointer;
}

.see__icon:hover {
	opacity: 0.8;
}

.login__input {
	border: none;
	border-bottom: 2px solid #D1D1D4;
	background: none;
	padding: 10px 24px;
	margin-bottom: 1rem;
	font-size: 1.1rem;
	font-weight: 500;
	width: 100%;
	transition: .2s;
	color: #444;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
	outline: none;
	border-bottom-color: #073f66;
}

.login__submit {
	background: #073f66;
	font-size: 14px;
	padding: 0 20px;
	border-radius: 26px;
	border: 2px solid white;
	box-shadow: none;
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	transition: .2s;
	height: 45px;
	width: 75%;
}

.login__submit:active,
.login__submit:focus,
.login__submit:hover {
	border-color: #073f66;
	outline: none;
}

.button__text {
	width: 100%;
}

.button__icon {
	font-size: 14px;
	margin-left: 0.6rem;
}

.social-login {	
	position: absolute;
	height: 140px;
	width: 160px;
	text-align: center;
	bottom: 0px;
	right: 0px;
	color: #fff;
}

.social-icons {
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-login__icon {
	padding: 20px 10px;
	color: #fff;
	text-decoration: none;	
	text-shadow: 0px 0px 8px #073f66;
}

.social-login__icon:hover {
	transform: scale(1.5);	
}

div.badgfont-fes {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.badges img {
  max-width: 120px;
  cursor: pointer;
  flex-direction: column;
}

@keyframes slide-left {
	0% {
		opacity:0;
		left: 100%;
	} 
	100% {
		opacity: 1;
		left: 0%;
	}
}

@keyframes slide-left-slow {
	0% {
		opacity:0;
	}
	50% {
		opacity:0;
		left: 100%;
	}
	100% {
		opacity: 1;
		left: 0%;
	}
}

@keyframes slide-right-hide {
	0% {
		opacity:1;
		right: 0%;
	} 
	100% {
		opacity: 0;
		right: 100%;
	}
}

.div_top, .div_bottom, .div_middle {
	overflow: hidden;
}

.div_top h3, .div_top h5 {
	position: relative;
	animation: slide-left 1.5s;
}
.login__submit, .passo-1, .passo-2, .passo-3 {
	position: relative;
	animation: slide-left-slow 3s;
}

.voltar_login {
	animation: slide-left-slow 4.5s;
}

/* MOBILE */
@media screen and (max-width: 900px) {
	.mobile {
		display: block;
	}

	.form-signin {
	  flex-direction: column;
	  width: 320px;
	  border-radius: 34px;
	}

	.div_left img {
		width: 340px;
		height: 325px;
		margin-top: -8px;
		margin-left: -10px;
		margin-bottom: 0px;
	}

	.div_right {
		padding: 0.7rem;
	}

	.login__field {
		width: 100%;
	}
	.login__submit {
		width: 100%;
	}

	.div__button {
		margin-top: 1rem;
	}
}
