body{
	background: var(--claro);
}
.header_height1{
	background: var(--color-paleta-2) !important;
}
header{
    background: var(--color-paleta-2) !important;
}
#top{
	position: relative;
	height: 100vh;
	color: var(--obscuro);
	background-color: var(--claro);
}
#top h1{
	font-size: 50px;
}
#top img{
	width: 100px;
	margin-bottom: 10px;
}
#top_text{
	opacity: 0;
	animation: fadeInUp 2s;
	animation-delay: 0.2s;
	animation-fill-mode: forwards;
}
.formMailContainer{
	background: var(--color-paleta-2);
    padding: 50px 0;
    color: white;
	width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.input-field{
    width: 350px;
    margin: 12px auto 30px !important;
}
.input-field>label{
    text-align: center !important;
}
.input-field > label:not(.label-icon).active {
    color: #00ffdc !important;
    -webkit-transform: translateY(-14px) scale(1) !important;
          transform: translateY(-14px) scale(1) !important;
    -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
input:focus, textarea:focus{
    border-bottom: 1px solid #00ffdc !important;
}
input, textarea{
    border-bottom: 1px solid white !important;
}
.input-field > label{
    color: white !important;
}
input, textarea{
    color: #fff;
    text-align: center;
}
.contacto_submit{
	background-color: #fff !important;
    font-family: 'GilamBold';
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-paleta-2);
    border-radius: 5px !important;
    display: block;
    width: 200px;
    text-align: center;
    padding: 6px;
    transition: all ease 0.2s;
}
.contacto_submit:hover{
	text-decoration: none;
    background-color: #83ffb2 !important;
    letter-spacing: 4px;
    box-shadow: 4px 4px 5px 0px rgb(15 0 68 / 30%);
}
.contacto_submit:focus{
	outline: none;
}
@keyframes fadeInUp {
    from {
      opacity: 0;
      top:55%;
    }
    to {
      opacity: 1;
      top:50%;
    }
}