@font-face {
    font-family: Lato;
    src: url('/static/fonts/Lato-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

html {
  width: 100%;
  height: 100%;
}

body {
    font-family: Lato;
}

h5 {
    color: #242424;
    font-size: medium;
}

p {
    color: #606060;
    font-size: small;
}

.contenedor {
    width: 100%;
    height: 100%;
    background-color: #E9E9E9;
    position: relative;
}

.card_pass {
    border-radius:1.2em;
    background-color: #FFFFFF;
    display: block;
    text-align: center;
    width: 25em;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*margin: -25px 0 0 -25px;*/
}

.formulario {
    margin: 1.56em;
}

.grupobtn {
    padding: 3%;
    justify-content: space-between;
    overflow: auto;
    align-items: stretch;
    width: 90%;
}

.buton {
    padding: .2rem 1rem;
    font-size: 1.05rem;
    border-radius: .3rem;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
}

.butn {
    background-color: #66D4AC;
    text-decoration-color: #ffffff;
    border: 1px solid #66D4AC;
    transition: all 1s ease;
    width: 7rem;
    margin-left: 2rem;
}

.butn:hover {
    background: #8EFFD0;
    border: 1px solid #66D4AC;
}

.butncancel {
    background-color: #B2350D;
    text-decoration-color: #ffffff;
    border: 1px solid #B2350D;
    transition: all 1s ease;
    width: 7rem;
    margin-left: 2rem;
}

.butncancel:hover {
    background: #DF7553;
    border: 1px solid #B2350D;
}

.inputmar {
    margin-top: 1em;
}