﻿html {
    background-color: #009688;
}
html, body{ height: 100%; }

body{ margin: 0;     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; overflow: hidden; }

/*************** HEADER ***************/
header{
    height: 10%;
    background-color: rgba(0,0,0,0.3);
}
header p{ float: left;
    color: #666;
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    height: 60%;
    font-size: 200%;
}
header img:first-of-type {
   float: left;
   left: 20px;
}
header img{
    float: right;
    height: 60%;
    position: relative;
    top: 20%;
    right: 20px;
    /* height: 35px;
    margin: 10px 15px; */

}
/**************** MAIN ****************/
/* .blurimage{
    filter: blur(8px);
    height: 100%;
    width: 100%;
    position: absolute;
    background-image: url(../bg.jpg);
z-index: -2;
} */
main, main>div{
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    height: 80%;
    font-size: 13px;
    /* overflow: hidden; */
}
main>div{width: 100%; height: 100%;
    background-image: url(../logo/svgbg.svg);
    background-repeat: no-repeat;
    background-position: center;
}
main>div::before{
    content:"";
    background-image: url(../imagenes/banner3.jpg);
    background-size: cover;
    position: absolute;
    z-index: -10;
    width: 100%;
    height: 100%;
}

h2{
    color: white;
    font-weight: normal;
    /* margin: 0 0 20px 0; */
    font-size: 200%;
    text-align: center;
}
svg{
    position: absolute;
    top: auto;
    left: 0;
    z-index: -1;
    min-height: 400px;
}
main img{
    width: 80px;
    height: 80px;
    display: block;
    margin: auto;
    margin-bottom: 20px;

}
input{
    border: 1px solid white;
    background-color: transparent;
    color: white;
    padding: 0 0 0 5px;
    height: 25px;
    display: block;
    margin: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 20px;
    width: 200px;

}
input:focus{
    /* border-color: #F7A573; */
    transition: 0.5s;
    /* outline: none; */
    outline-color: #F7A573;
}
input[type=submit], .boton{
    border: none;
    color: white;
    background-color: #F7A573;
    display: block;
    margin: auto;
    height: 25px;
    line-height: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100px;
    padding: 0;
}

a{
    margin: auto;
    margin-top: 5px;
    display: block;
    text-align: center;
    color: white;
    text-decoration: none;
}
.boton{
    margin-top: 50px;
}
a:hover:not(.boton){
    text-decoration: underline;
}
input[type=submit]:hover, .boton:hover{
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.40);
}
::-ms-input-placeholder{color:white;}
::placeholder{
    color: white;
}
p{
    color: white;
    text-align: center;
    font-size: 140%;
    font-weight: lighter;
}
#emailSent{
    font-size: 300%;
}
#emailSentIcon{
    color: white;
    display: block;
    text-align: center;
}
#emailSentIcon >i:first-of-type{
    font-size: 500%;
    background-color: #009688;
    transform: skewX(-15deg);
    position: relative;
    right: -35px;
}
#emailSentIcon>i:nth-of-type(2){
    font-size: 300%;
    transform: skewX(-15deg);
    position: relative;
    right: 60px;
    bottom:10px;
    z-index: -1;
}

@media (max-width:786px){
    header{ position: absolute; width: 100%;
        min-height: 50px; transform: translateY(-100px); transition: 2s;}
        main{height: 100%; background-size: 100% 400px;}

 }
 @media(max-height:500px){
     /* main{overflow: hidden;} */
     header{ position: absolute; width: 100%;
        min-height: 50px; transform: translateY(-100px); transition: 2s;}
     main{height: 100%; background-size: 100% 400px;}
     svg{
     }
     section{
         /* display: flex; */
     }
     /* main{
         background-color: rgba(0, 150, 136, 0.8);
     } */
 }