/*PAGINA DE INDEX.PHP-------------------------------------------------------------------------------------------------*/
.login {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}    

#formulario {
    background-color: white;
    text-align: center;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

#formulario img {
    width: 300px;
}
    
.campo input {
    border: 1px solid #ccc;
    font-size: 14px;
    border-radius: 4px;
    width: 100%;
    padding: 12px;
    margin: 10px;
}

.campo button {
    width: 100%;
    padding: 12px;
    margin: 10px;
}

#iniciar {
    width: 100%;
    background-color: #6285fd;
    color: white;
    border-radius: 4px ;
    margin-top: 10px;
    border: none;
    font-size: 17px;
    
}
  
.link {
    margin-top: 15px;
    font-size: 14px;
    color: red;
    font-weight: bold;
}

/*ENCABEZADO---------------------------------------------------------------------------------------------------*/
.encabezado {
    background-color: #002ffe;
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    padding:  20px; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    left: 0; 
    z-index: 1000; 
    color: #fff;
}
      
.logo-cgm {
    height: 50px; 
    margin-right: 20px; 
    background-color: #fff;
}
    
.titulo {
    font-size: 20px;
    font-weight: bold;
    margin: 0; 
}

/*PAGINA DE FORMULARIO.PHP------------------------------------------------------------------------------------*/


.formulario{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 40px;
    margin: 0;
}

#formulario-denuncias {
    background-color: white;
    
    padding: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}
    
label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
    color: #333;
    font-size: 15px;
}
    
.descripcion,
.captcha,
input[type="date"],
input[type="file"],
select{
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}
    
button#enviar {
    margin-top: 30px;
    width: 100%;
    padding: 12px;
    background-color: #6285fd;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

button#enviar:hover {
    background-color: #002ffe;
}

/*DOCUMENTOS ADJUNTOS------------------------------------------------------------------------------------*/


.documentos-adjuntos {
    border: 1px solid #fff;
    padding: 12px;
    
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    padding-bottom: 70px;
}

.documentos-adjuntos h3 {
    font-size: 15px;
}

.icono-adjuntos {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}
   
.icono-pdf {
    width: 16px;
    height: 16px;
}
    
a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}
    

/*INFORMACION LEGAL---------------------------------------------------------------------------------------------*/
.informacion-legal {
    border: 1px solid #fff;
    padding: 12px;
    
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.informacion-legal h3 {
    font-size: 15px;
}

.icono-consentir {
    width: 28px;
    height: 28px;
    margin-right: 8px;
    margin-top: 5px;
}

.informacion-legal h4 {
    font-size: 10px;
    margin-left: 30px;
}

.informacion-legal p {
    font-size: 14px;
    margin-left: 30px;
    color: #333;
}

/*INFORMACION ADICIONAL-------------------------------------------------------------------------------------*/
.informacion-adicional {
    border: 1px solid #fff;
    padding: 12px;
    
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.icono-informacion {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.informacion-adicional h3 {
    font-size: 15px;
    height: 15px;
}

.informacion-adicional h4 {
    font-size: 10px;
    margin-left: 30px;
}

.informacion-adicional p {
    font-size: 14px;
    margin-left: 30px;
    color: #333;
}

/*INFORMACION DE PROTECCION DE DATOS------------------------------------------------------------------------------*/
.informacion-proteccion {
    border: 1px solid #fff;
    padding: 12px;
    
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.informacion-proteccion h3 {
    font-size: 15px;
    height: 15px;
}

.icono-proteccion{
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.informacion-proteccion h4 {
    font-size: 10px;
    margin-left: 30px;
}

.informacion-proteccion p {
    font-size: 14px;
    margin-left: 30px;
    color: #333;
}