<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 15/10/2019, 03:54:20 PM
*/

.products form{
    margin: auto;                       /* el formulario va a estar centrado */
    max-width: 1200px;                  /* ancho maximo */
    padding: 20px;			/* padding de 30 pixeles a los 4 lados */
    font-family: 'Roboto', sans-serif;
}

@media (orientation:portrait){
    
    padding: 5px;			/* padding de 30 pixeles a los 4 lados */
    
}

/* formato para el parrafo */
.intro{
    text-align: center;
    margin-bottom: 20px;
}


input, textarea{
    font-size: 16px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #db812e;
    outline: none;
    padding: 15px;
}

textarea{
    min-height: 140px;
    max-height: 200px;
    max-width: 100%;
}

#btnEnviar{
    background: #E1954F;
    border-radius: 1px;
    border: 2px solid #f2f2f2;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    padding: 15px;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

#btnEnviar:hover{
    cursor: pointer;
    background: #db812e;
}

.mensaje-enviado{
    text-align: center;
    color: #E1954F;
}

.mensaje-enviado p{
    padding-top: 80px;
    font-size: 25px;
    color: #E1954F;
}

/*
#btnAceptar{
    background: #E1954F;
    border-radius: 1px;
    border: 2px solid #f2f2f2;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    width: 40%;    
    padding: 15px;
    border-radius: 30px;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

#btnAceptar:hover{
    cursor: pointer;
    background: #db812e;
}
*/

.info{
    text-align: justify;
}

/*
img{
    box-shadow: 0px 0px 3px grey;
}
*/
</pre></body></html>