@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
*{
    box-sizing: border-box;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    background-color: #F4F4F4;
  
}


body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cuerpo {
    margin-top: 10%;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    }


.titulo {
    width: 100%;
    font-weight: bold;
    font-size: 1em;
    text-align: center;
    color: #0069c0;
}

.imagen {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.contenedor {
    width: 400px;
    max-width: 400px;
    height: auto;
    margin-left: auto;
    margin-right: auto;

    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
}

.grabar {
    width: 150px;
    height: auto;
    padding: 5px;
    border-radius: 5px;
    font-size: 1em;
    background-color: green;
    color: whitesmoke;
    cursor: pointer;
}

.cancelar {
    width: 150px;
    height: auto;
    padding: 5px;
    border-radius: 5px;
    font-size: 1em;
    background-color: red;
    color: whitesmoke;
    cursor: pointer;
}




