body
{
    margin:0;
    padding: 0;
    background: #004F76;
    font-family: sans-serif;
}
#Fondo{
    width: 85px;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
}
.loginBox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    min-height: 200px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-sizing: border-box;
}
h3{
    margin: 0;
    padding: 0 0 20px;
    color: #262626;
    text-align: center;
}
.loginBox input{
    width: 100%;
    margin-bottom: 20px;    

}
.loginBox input[type = "text"], 
.loginBox input[type = "password"] {
    border:  none;
    border-bottom: 2px solid #262626;
    outline: none;
    height: 40px;
    color: #262626;
    background: transparent;
    font-size: 16px;
    padding-left: 20px;
    box-sizing: border-box;

}
.loginBox input[type = "text"]:focus, 
.loginBox input[type = "password"]:focus {
    border-bottom: 2px solid #f00;
}
.inputBox{
    position: relative;
}
.inputBox Span{
    position: absolute;
    top: 10px;
    color: #262626;
}
.loginBox input[type= "submit"]{
    border:  none;
    outline: none;
    height: 40px;
    font-size: 16px;
    background: #ed292a;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
}
.loginBox a{
    color: #262626;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    text-align:  center;
    display: block;
}
section{
    position: relative;
    width: 100%;
    height: 100vh;
    background: #3586ff;
    overflow: hidden;
}
section .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("../Imagenes/wave.png");
    background-size: 1000px 100px;
}
section .wave.wave1{
    animation: animate 30s linear infinite;
    z-index: 1000;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;
} 
section .wave.wave2{
    animation: animate2 15s linear infinite;
    z-index: 999;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10px;
} 
section .wave.wave3{
    animation: animate 30s linear infinite;
    z-index: 998;
    opacity: 0.2;
    animation-delay: -2s;
    bottom: 15;
} 
section .wave.wave4{
    animation: animate2 5s linear infinite;
    z-index: 997;
    opacity: 0.7;
    animation-delay: -2s;
    bottom: 20px;
} 
@keyframes animate{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 1000px;
    }
}
@keyframes animate2{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: -1000px;
    }
}