body{
  background-color: #F9FAFC !important;
  grid-template:initial;
  height: initial !important;
  display: initial;
  overflow: initial;

}
:root{
  --transition:all 0.3s ease;
  --color-text:#3a3a3a;
}
*:focus{
  outline: none !important;
}
/* Estilos das imagem laterais  */
.vector_art{
  position: fixed;
  height: 48vh;
  bottom: 0px;
  margin: 0px 20px;
}
.image_logo{
  width: 160px;
  margin-left: calc(50% - 80px);
}
/* Filtro das linhas de carregamento */
.filter_loading{
  background-color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
/* Linhas de carregamento */
.father_line_loading{
	position: absolute;
  top: 0px;
  left: 0px;
	height: 3px;
	width: 100%;
	background-color: transparent;
	pointer-events: none;
	overflow: hidden;
  opacity: 0;
	--animation-prop-one: line_loading 3s linear infinite;
	--animation-prop-two: line_loading_fast 3s linear infinite;
  z-index: 2;
}
/* Linha de carregamento lenta */
.line_loading{
	position: absolute;
	height: 100%;
	background-color: var(--color-main);
	animation: var(--animation-prop-one);
}
@keyframes line_loading {
  0% {
		width:0%;
		left: -25%;
  }
	20%{
		left:30%; 
	}
	30%{
		width:60%; 
	}
	50%{
		width: 30%;
		left: 90%;
	}
  100% {
		width: 100%;
		left: 200%;
  }
}
/* Linha de carregamento rapida */
.line_loading_fast{
	position: absolute;
	height: 100%;
	background-color: var(--color-main);
	animation: var(--animation-prop-two);
	animation-delay: calc(2s / 2);
}
@keyframes line_loading_fast {
  0% {
		width: 10%;
		left: -10%;
  }
	25%{
		width: 70%;
		left: 25%;
	}
	50%{
		width: 10%;
		left: 100%;
	}
  100% {
		width: 0%;
		left: 100%;
  }
}
/* Box com os campos */
.box_informations{
  position: relative;
  width: 350px;
  margin:30px auto;
  background-color: #FFFFFF;
  border-radius: 3px;
  padding: 35px 40px;
  box-shadow: 1px 3px 8px 1px rgba(0,0,0,0.13);
  overflow: hidden;
  height: max-content;
  margin-bottom: 30px;
  transition:height 0.3s ease;
  max-width: calc(100% - 30px);
}
/* Estilos do titulo */
h5{
  text-align: center;
  color: #5E6C84;
  letter-spacing: -0.01em;
  font-size: 1.25rem;
  margin: 0px;
  width: 100%;
}

#alert_user{
  border: 1px solid #d93025;
  color: #d93025;
  background-color: hsl(4, 71%, 50%, 0.15);
  border-radius: 4px;
  padding:5px 10px;
  font-size: 13px;
  line-height: normal;
  margin-top: 20px;
  display: flex;
  align-items: center;
}
#alert_user span{
  margin-left: 7px;
}
/* Estilos da input  */
.father-input-df-4{
	width: 100%;
	margin: 35px 0px;
  position: relative;
}
.input-df-4{
	font: 15px/24px "Lato", Arial, sans-serif;
	color: #333;
	width: 100%;
	box-sizing: border-box;
	letter-spacing: 1px;
	border: 0;
	padding: 4px 0;
	border-bottom: 1px solid #ccc;
	background-color: transparent;
}
.input-df-4 ~ .focus-border{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--color_main);
	transition: 0.4s;
}
.input-df-4:focus ~ .focus-border,
.input-df-4:focus ~ .focus-border, .input-df-4:not(:placeholder-shown) ~ .focus-border, .has-content.input-df-4 ~ .focus-border{
	width: 100%;
	transition: 0.4s;
}
.input-df-4 ~ label{
  position: absolute;
  left: 6px;
  width: 100%;
  top: 2px;
  color: #aaa;
  transition: 0.3s;
  letter-spacing: 0.5px;
  cursor: text;
}
.input-df-4:focus ~ label, .input-df-4:not(:placeholder-shown) ~ label, .has-content.input-df-4 ~ label{
  top: -16px;
  left: 0px;
  font-size: 14px;
  color: var(--color_main);
  transition: 0.3s;
}
.input-df-4:focus, .input-df-4:not(:placeholder-shown), .has-content.input-df-4{
 color: var(--color_main);
}

.toggle_view {
  position: absolute;
  height: 25px;
  width: 25px;
  right: 5px;
  bottom: 3px;
  cursor: pointer;
  z-index: 1;
}
.toggle_view svg{
  position: absolute;
  transition: all 0.3s ease;
  transition-delay: 0.1s; 
  opacity: 0.6;
}
input{
  padding-right: 40px;
}
input[type='password'] ~ .toggle_view .protect{
  opacity: 0;
}
input[type='text'] ~ .toggle_view .see{
  opacity: 0;
}

/* Estilos do botão */
.button-default-3{
  position: relative;
  width: max-content;
  height: max-content;
  margin: 0 auto;
  color:var(--color_main); 
  text-align:center;
  cursor: pointer;
  display:block;
  transition: all 0.3s ease;
}
.button-default-3:hover {
  color:var(--color_main_dark); 
}
.button-default-3::before{
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  top: calc(50% + 2px);
  right: -14px;
  background-color: currentColor;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: all 0.2s ease;
}
.button-default-3:hover::before{
  right: -20px;
}
.button-default-3::after{
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: calc(50% - 0px);
  right: -14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotateZ(45deg);
  transition: all 0.2s ease;
}
.button-default-3:hover::after{
  right: -20px;
}


.button-df-6{
  width: 100%;
  background: transparent;
  color: #fff;
  border-radius: 3px;
  font-weight: bold;
  padding: 10px 20px;
  border: 0px;
  font-size: 17px;
  cursor: pointer;
}
.box_informations .button-df-6:not(:disabled) {
  background: var(--color-main);
}
/* Estilos do link para a cadastrar */
.line_division {
  position: relative;
  display: block;
  border-top: 1px solid hsl(0,0%,80%);
  margin: 30px 0px;
}
.link_forget_password {
  position: relative;
  margin: 0px 0px 30px;
  color: #9e9e9e;
  font-size: 13px;
  text-align: right;
  pointer-events: none;
  display: block;
  transition: color .3s ease;
}
.link_forget_password:hover {
  color: var(--color_main);
}
.link_forget_password span {
  pointer-events: all;
}
.link_login {
  position: relative;
  display: block;
  margin-top: 30px;
  text-align: center;
  color: #303030;
  transition: color .3s ease;
}
.link_login:hover{
  color: var(--color_main);;
}
/* Otimização Mobile  */
@media (max-width:360px){
  .box_informations{
    padding: 35px 20px;
  }
} 