article{
    margin: 15px;
}
article>form>div:first-child{
    font-weight: 400;
    margin: 20px 10px;
}
article>form>div.fila{
    margin: 40px 10px;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}
article>form>div.fila>div.columna{
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
}
article>form>div.fila>div.columna>strong{
    font-weight: 700;
    margin-bottom: 10px;
}
article>form>div.fila>a{
    min-width: 200px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    padding: 15px;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 5px;
    margin-right: 5px;
    text-decoration: none;
    background: #337ab7;
    border: 1px solid #337ab7;
    position: relative;
}
article>form>div.fila>a:hover{
    background: #fff;
    color: #337ab7;
}

article>form>div.fila:last-child{
    justify-content: center;
}

#estado{
    width: min-content;
}

input[type="submit"]{
    color: #FFF;
    background-color: #32c5d2;
    border-color: #32c5d2;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 6px 12px;
}
