.container{
    max-width:1000px;
    margin-left: auto;
    margin-right: auto;
}

.container .fila{
    padding-left: 133px;
    padding-right: 133px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.container h1{
    padding-top: 30px;
    font-size: 3.6rem;
    color: var(--principal);
    text-align: center;
    letter-spacing: 2px;
    font-weight: normal;
}

.container input, .container textarea{
    background-color: #e9e9e9;
    width: 100%;
    height: 30px;
    border: 0;
    padding: 12px;
}

.container input:focus, .container textarea{
    outline: none;
}


.container textarea{
    height: initial;
}

.container button{
    cursor: pointer;
    background-color: #F58220;
    height: 39px;
    border: 0;
    color: white;
    padding: 6px 18px;
}

.container button:disabled,
button[disabled]{
    cursor: auto;
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
}

.container .mensaje{
    padding-left: 6px;
}

/* --------------------- Movil   ----------------------  */
@media screen and (max-width: 576px) {
    .container .fila{
        padding-left: 9px;
        padding-right: 9px;
    }
    .container button{
        width: 100%;
    }

    .container .mensaje{
        display: block;
        padding-left: 0px;
        padding-top: 6px;
        color: navy;
    }
}