.wrap{
    width: 95%;
    max-width: 500px;
    margin:auto;
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 15px;
    background: #fff;
    box-shadow: 0 0 3px grey;
    border-top: 4px solid #0D679A;
    border-bottom: 4px solid #0D679A;
}

form{
    width: 100%;
    margin: 0px 0px;
    margin-bottom: 30px;

    /* padding: 15px;
    background: #fff; */
    overflow: hidden;       /**Trabaja en conjunto con el float del boton, ver video para mas informacion*/
    /* box-shadow: 0 0 3px grey;
    border-top: 4px solid #0D679A;
    border-bottom: 4px solid #0D679A; */
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form textarea{
    border: 1px solid #0D679A;
    border-radius: 2px;
    padding: 10px;
    width: calc(100% - 30px);
    display: block;
    margin-bottom: 15px;
    font-size: 1em;
    color:#141938;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form textarea:focus{
    border: 2px solid #0D679A;
    padding: 10px;
}

form textarea{
    max-width: calc(100% - 30px);
    min-width: calc(100% - 30px);
    max-height: 300px;
    min-height: 150px;
}

.alert{
    padding: 1em;
    color:#fff;
    border-radius: 2px;
    margin-bottom: 20px;
    font-size:14px;
}

.alert.error{
    display: none;
    background: #f2dede;
    border: 1px solid #a94442;
    color:#a94442;
}

.alert.success{
    display: none;
    background: #4caf50;
}

.btn,form input[type="submit"]{
    padding: 15px;
    background: #ed572a;
    color: #e1e9fa;
    font-size: 1em;
    border-radius: 2px;
    border: none;
    float: right;
    cursor: pointer;
}

form input[type="submit"]:hover{
    background: #e64a19;
}

.wrap a{
    display: none;
    width: calc(100% - 50px);
    text-decoration: none;
    padding: 15px;
    margin: auto;
    border: solid 4px rgb(241, 13, 13);
    border-radius: 10px;

}

/* .wrap div.mostrar{
    display: block;
} */

.mostrar{
    display: block;
}