#recuperacion{
    position: relative;
    float: left;
    width: 60%;
    left: 20%;
    margin-top: 5%;
}
.formulario_recuperacion{
    position: relative;
    float: left;
    width: 100%;
    padding: 15px 7px;
    box-shadow: 0px 0px 10px #C9C9C9;
}
.logo_form{
    position: relative;
    float: left;
    width: 30%;
    text-align: center;
}
.logo_form img{
    max-width: 90%;
}
.titulo_form{
    position: relative;
    float: left;
    width: 70%;
    text-align: center;
}
.titulo_form h1{
    color: #004a8e;
}
.titulo_form h3{
    color: #5ba124;
}
.cuerpo_form{
    position: relative;
    float: left;
    width: 100%;
}
.cuerpo_form p{
    text-align: center;
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.set_cuerpo{
    position: relative;
    float: left;
    width: 60%;
    left: 20%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.icon_set{
    position: relative;
    float: left;
    width: 10%;
    font-size: 21px;
    padding: 3px 5px;
    background-color: #004a8e;
    text-align: center;
    color: #fff;
    border-radius: 5px 0px 0px 5px;
}
.field_set{
    position: relative;
    float: left;
    width: 80%;
}
.field_set input{
    padding: 4px 5px;
    border: 1px solid #004a8e;
    border-radius: 0px 5px 5px 0px;
    width: 100%;
    color: #000;
    font-size: 18px;
    transition: all 230ms linear;
}
.field_set input:focus{
    transition: all 230ms linear;
    border: 1px solid #5ba124;
    box-shadow: 0px 0px 10px #5ba124;
}
.submit_button{
    position: relative;
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
.submit_button input{
    display: none;
}
.submit_button label{
    background-color: #337abb;
    cursor: pointer;
    padding: 5px 10px;
    color: #fff;
    border-radius: 6px;
    font-size: 28px;
    transition: all 230ms linear;
}
.submit_button label:hover{
    background-color: #004a8e;
    transition: all 230ms linear;
}
@media screen and (max-width: 800px){
    .formulario_recuperacion{
        box-shadow: none;
        width: 100%;
        left: 0%;
    }
    .set_cuerpo{
        width: 100%;
        left: 0;
    }
}
@media screen and (max-width: 500px){
    #recuperacion{
        width: 90%;
        left: 5%;
    }
    .logo_form{
        width: 100%;
    }
    .titulo_form{
        width: 100%;
    }
    
}