/*========
Form
========*/
form{
    width:90%;
	background:#DDEDF9;
	padding: 20px 5% 20px 5%;
	height:auto;
    font-family: 'Nunito', sans-serif;
    margin:0px auto;
}

/*========
Label
=========*/
label {
    color:#426DA7;
    cursor: pointer;
    display: block;
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 1.5;
 }

/*========
Input
=========*/
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"], 
input[type="datetime-local"],
input[type="month"], input[type="week"], 
input[type="email"], input[type="number"], 
input[type="search"], input[type="tel"],
input[type="time"], input[type="url"], 
input[type="color"],
textarea {
    background-color: #FFFFFF;
    border:1px solid #cccccc;
    color: rgba(0, 0, 0, 0.75);
    display: block;
    height: 2.3125rem;
    margin: 0 0 1rem 0;
    padding: 0.5rem;
    width: 100%;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); 
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input[type="submit"]{
    display: block;
    background:#426DA7;
    padding:8px 15px;
    cursor:pointer;
    font-size:17px;
    border:inherit;
    margin:10px auto;
	color: white;
}

/*========
Select
=========*/
select {
    width: 100%;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-color: #FAFAFA;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
    background-position: 100% center;
    background-repeat: no-repeat;
    border-style: solid;  
    border-width: 1px;
    color: rgba(0, 0, 0, 0.75);
    font-family: inherit;
    font-size: 0.875rem;
    padding: 0.5rem;
    height: 2.3125rem;
    margin: 0 0 1rem 0;
}
  select:hover {
    background-color: #f3f3f3;
    border-color: #999999; }

/*========
Textarea
=========*/
textarea {
    height: auto;
    min-height: 100px;
    max-width: 100%;
    font-size: 0.875rem;
    font-family: inherit;
}

/* =============================================================================
   DISEÑO TABLETA: DE 481 PX A 768 PX. HEREDA ESTILOS DE: DISEÑO MÓVIL.
   ========================================================================== */
@media only screen and (min-width: 481px) {
    
    form{
        width:90%;
        padding:5%;
    }
    
    .meduno{
    width: 51%;
    float: left;
    padding-right: 6%;
    }

    .medos{
    width: 48%;
    float: left;
	padding-right: 0%;
    }
}

/* =============================================================================
   DISEÑO ESCRITORIO: DE 769 PX HASTA UN MÁXIMO DE 1232 PX.  HEREDA ESTILOS DE:
   DISEÑO MÓVIL Y DISEÑO TABLETA.
   ========================================================================== */
@media only screen and (min-width: 769px) {
        form{
        width:100%;
    }
}