* {
    /*Inicializacion de margenes*/
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.contenedor {
    /*Dimensiones del contenedor*/
    height: 100%;
    width: 100%;
    min-height: 500px;
}
.contenido{
    height: 100%;
    width: 100%;
    margin-bottom: 5em;
}

/*Estilo de la plantilla app*/


.logo {
    display: inline-block;
    width: 30%;
    margin: 20px;

}

.titulo {
    width: 100%;
    height: 50px;
    text-align: center;
}

/*Estilos generales para titulos y parrafos*/

h2 {
    color: #1c2444;
    font-weight: normal;
    font-size: 30px;
    font-family: Arial;
    text-transform: uppercase;
    font-weight: 500;
}

h1 {
    color: #1c2444;
    font-weight: normal;
}

p {
    color: #434141;
    font-weight: normal;
    font-size: 25px;
    font-family: Arial;
    text-transform: uppercase;
}

/*Estilo para todas las tablas*/



caption {
    font-weight: bold;
    font-style: italic;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
    background-color: #D9B855;
}

li a:active {
    background-color: #D9B855;
    color: white;
}

/*Diseño de estatus_predial*/

.tablaEstatus {
    height: 400px;
    width: 100%;
    overflow-y: auto;
}

.texto{
    width: 100%;
    height: 100%;
    text-align: center;
    margin-top: 100px;
}
.grafico{
    width: 100%;
    height: 100%;
    padding-left: 20%;
    padding-top: 2%;
}

/*Diseño para detalle_region*/
#colonia{
    padding: 10px;
    margin: 10px;
    width: 100%;
    text-align: center;
}
.regiones{
    text-align: center;
}
#tablaRegiones{
    padding-top: 10px;
    height: 400px;
    width: 100%;
    overflow-y: auto;
    overflow-x: auto;
}

/*Diseño para forma_pago*/
.tablaFormapago{
    height: 400px;
    width: 100%;
    overflow-y: auto;
    overflow-x: auto;
}

#piechart1 {
    width: 100%;
    height: 100%;
}

#piechart2 {
    width: 100%;
    height: 100%;
}

/*Diseño para recaudacion_monto*/
#tablaMonto{
    height: 400px;
    width: 100%;
    overflow-y: auto;
}

/*Diseño para recaudacion_predial*/
.tablaRecaudacion{
    height: 400px;
    width: 100%;
    overflow-y: auto;
}

/*Estilo para login*/
.form-register {
    width: 400px;
    background: white;
    padding: 30px;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 100px;
    border-radius: 4px;
    font-family: 'calibri';
    color: black;
    box-shadow: 7px 13px 37px #000;
  }
  
  .form-register h4 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .controls {
    width: 100%;
    background: white;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 16px;
    border: 1px solid #1c2444;
    font-family: 'calibri';
    font-size: 18px;
    color: black;
  }
  
  .form-register p {
    height: 40px;
    text-align: center;
    font-size: 18px;
    line-height: 40px;
  }
  
  .form-register a {
    color: white;
    text-decoration: none;
  }
  
  .form-register a:hover {
    color: white;
    text-decoration: underline;
  }
  
  .form-register .botons {
    width: 100%;
    background: #1c2444;
    border: none;
    padding: 12px;
    color: white;
    margin: 16px 0;
    font-size: 16px;
    cursor: pointer;
  }
