.contenido-form{
    margin: auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.2);
    height: 90vh;
    width: 60vw;
    padding: 20px;
}
h2{
    font-size: 24px;
    color: #0E794C;
    font-weight: bold;
}

h3{
    font-size: 18px;
}

/* .formulario-contenido{
    margin-top: 50px;
    margin-left: 150px;
} */

.input-box {
    width: 330px;
    box-sizing: border-box;
    margin: auto;
}

.input-field {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 10px 0 10px;
    margin-top: 10px;
}

.input {
    height: 45px;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #0E794C;
    outline: none;
    margin-bottom: 20px;
    color: #40414a;
}

.input-box .input-field label {
    position: absolute;
    top: 10px;
    left: 10px;
    pointer-events: none;
    transition: .5s;
}

.input-field .input:focus ~ label {
    top: -10px;
    font-size: 13px;
}

.input-field .input:valid ~ label {
    top: -10px;
    font-size: 13px;
    color: #5d5076;
}

.input-field .input:focus, .input-field .input:valid {
    border: none;
    border-bottom: 1px solid #0e794c;
}

.submit {
    border: none;
    outline: none;
    height: 45px;
    background: #ececec;
    border-radius: 5px;
    transition: .4s;
}

.submit:hover {
    background: rgba(14, 121, 76, 0.9);
    color: #fff;
}



