/* ------------ BASIC SETTINGS  ------------ */
html {
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
}

.screen {
    display: none;
    max-width: 100%;
    box-sizing: border-box;
    min-height: calc(90vh - 20px);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.hidden {
    display: none;
}

.screen.visible {
    display: flex; 
}

.visible {
    display: block; 
}

/* ------------ ESTILO PARA FORMULARIOS  ------------ */
form .form-group label {
    font-weight: bold; /* Destaca el texto de los labels */
}

form input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3);
}

form input[type="submit"]:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

/* ------------ TEXT SETTINGS  ------------ */
.text {
    font-size: larger;
}

/* Estilos generales para el cuerpo */
body {
    font-family: 'Inter', Arial, sans-serif; 
    font-size:x-large;
    display: flex; 
    justify-content: center; 
    align-items: flex-start;
    min-height: 100vh; 
    margin: 0;
    padding-top: 10vh; /* Compensar el encabezado fijo */
    box-sizing: border-box;
    /*background-image: url('Design1_faded.jpeg'); 
    background-size: cover; 
    background-position-y: 85%;
    background-repeat: no-repeat; 
    background-attachment: fixed; */
}

body.inicio-class {
    background-image: none;
}

/* Pseudo-elemento para fadear el background */
body::before {
    content: ""; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(15px); 
    z-index: -1; 
}

.titulo {
    font-size: 1em;
    color: #2c3e50;
    display: block;
    margin-bottom: 1px;
    font-weight: bold;
}

/* ------------ ACCESORIOS SETTINGS  ------------ */
/* Imágenes */
img {
    max-width: 100%;
    height: auto;
}

/* Botones */
button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: rgb(175, 230, 255);
    color: black;
    cursor: pointer;
    font-size:x-large;
    margin-top: 5px;
    transition: all 0.2s ease;
}

.volver-btn { 
    background-color: rgb(175, 230, 255);
    color: black;
    padding: 1vh 2vh;
}

button:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

.disabled-btn { /* Botones no disponibles */
    background-color: rgba(157, 193, 210, 0.686);
    color: white;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Popups */
#popup { 
    position: fixed; /* Fijar el popup en el centro de la pantalla */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centrar el popup */
    background: white;
    border: 2px solid #007bff; /* Borde azul */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Asegurar que el popup esté encima de otros elementos */
    font-size:large
}

/* ---- Popup de Verificación de Código ----  */
/* Estilos para el popup */
.popup {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: white; padding: 20px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    width: 300px; text-align: center; z-index: 1000; display: none;
}

.popup.visible {
    display: block;
}

/* ------------ AJUSTES ESPECÍFICOS PANTALLAS ------------ */
/* ------------ ENCABEZADO ------------ */
.encabezado {
    width: 100%;
    background-color: rgb(175, 230, 255);
    display: flex;
    position: fixed; 
    justify-content:space-between;
    align-items: center;
    height: 10vh;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo {
    margin: 0;
    margin-left: 1rem;
    font-size: 0.8rem;
    color: #000;
    cursor: pointer;
}

/* Navegación del encabezado */
.navegacion {
    display: flex;
    gap: 35px;
    margin-right: 0.6vw;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-size: 1.3rem;
    cursor: pointer;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #007BFF;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #007BFF;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ------------ PANTALLA DE INICIO ------------ */ 
.inicio-class {
    height: calc(95% + 10vh);
    width: 100%;
    background-image: url('Design1.jpeg');
    background-size: contain;
    background-color: rgb(254, 224, 196);
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: -2%;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    z-index: 100;
    font-size: xx-large;
    margin-top: -10vh; /* Compensar el padding-top del body para que la imagen toque el encabezado */
    padding-top: 10vh; /* Devolver el espacio al contenido de texto */
}

/* Mensaje inicio */ 
.inicio-box-title {
    margin-top: 10%; 
    margin-left: 2%;
    margin-bottom: -1%;
    padding: 0rem;
    border-radius: 10px;
    text-align: center;
    width: 46%; 

 }
 .inicio-box-subtitle {
    margin-left: 2%;
    margin-bottom: 15%;
    padding: 0rem;
    border-radius: 10px;
    text-align: center;
    width: 45%; 
 }

/* Mensaje de explicación sobre cómo votar */
.inicio-explain {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    color: black;
    text-align: center;
    margin-top: 0%;
}
/* Snip sobre cómo votar */
.snip-legis {
    background-size: 99%; 
    padding: 15%; 
    background-image: url('votar-legislación.png');
    background-repeat: no-repeat;
    background-position: center;
    margin: 0%;
    margin-top: 0%;
}

.snip-cuest {
    background-size: 95%; 
    padding: 23%; 
    background-image: url('votar-cuestiones.png');
    background-repeat: no-repeat;
    background-position: center;
    margin: 0%;
    margin-top: 0%;
} 

/* ------------ ¿QUIÉNES SOMOS? ------------ */ 
/* Pantalla general */
#about_us-screen {
    position: relative;       /* contexto para el pseudo-elemento */
    width: 100vw;             /* ocupa todo el ancho de la ventana */
    height: 100vh;            /* ocupa todo el alto de la ventana */
    overflow: hidden;         /* recorta cualquier desborde */
}
/* Fondo */
#about_us-screen::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #231F20;
    background-size: cover;
    background-position: center;
    z-index: -1;              /* siempre detrás de tu contenido */
}
/* Texto */
#texto-about-us {
    position: absolute;       /* se posiciona respecto a #about_us-screen */
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;       /* centra el texto línea a línea */
    width: 100%;              /* ancho completo para que text-align surta efecto */
    color: rgb(119, 212, 255); /* azul ligeramente distinto al mítico, para resaltar con el background azul oscuro */
}  
/* Carousel */
.carousel {
    display: flex;
    overflow-x: auto;
    scrollbar-width: 30px;
    scrollbar-color:  rgb(119, 212, 255) transparent; /* azul ligeramente distinto al mítico, para resaltar con el background azul oscuro */
  }
  .carousel::-webkit-scrollbar { height: 10px; }

.carousel-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.8rem; 
    word-break: break-word;
}

/* ------------ RESULTADOS ------------ */ 
#resultados {
    font-size: 1.8rem;
}

#resultados h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

#resultados button {
    font-size: 1.5rem;
    padding: 15px 25px;
}

.table{
    overflow-y: auto;
    max-height: 90vh;
    align-self: flex-start;
    width: 100%;
}

.filtro-input {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

#resultados-table {
    background: white; 
    border-radius: 5px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    font-size: large;
    width:100%;
    height: 100%;
    table-layout: fixed;
}

#resultados-table th, #resultados-table td {
    padding: 12px 15px; /* Espaciado dentro de las celdas */
    text-align: left; /* Alineación a la izquierda del texto */
    border: 1px solid #dddddd; /* Línea gris clara entre las celdas */
}

#resultados-table th {
    background-color: rgba(175, 230, 255, 0.6); /* Fondo gris claro para los encabezados */
    font-weight: bold; /* Negrita para los encabezados */
}

#resultados-table tr:nth-child(even) {
    background-color: rgba(175, 230, 255, 0.3); /* Color de fondo alternado para las filas */
}

#resultados-table tr:hover {
    background-color: rgba(175, 230, 255) /* Efecto hover en las filas (cuando el ratón pasa sobre ellas) */
}

/* Filtrado */
th:nth-child(4), th:nth-child(5) {
    cursor: pointer;
}
th:nth-child(4):after, 
th:nth-child(5):after {
    content: ' ▲▼';
    font-size: 0.6em;
}

/* ------------ PANTALLA DE INICIO ------------ */
#login-screen {
  max-width: 400px;
  padding: 20px;
  font-family: sans-serif;
  font-size: x-large;
}

#login-form {
  display: grid;
  gap: 8px;
}

#login-form input, #login-form button {
  padding: 8px;
  font-size: xx-large;
}

#registro-link, #recuperar-link {
  color: blue;
  cursor: pointer;
  text-align: center;
}

/* ------------ PANTALLA DE REGISTRO ------------ */  
#registro-form {
    display: grid;
    margin: 0 auto;
    max-width: 500px;
}

#registro-form input,
#registro-form > div {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 5px;
}

#registro-form button[type="button"] { right: 5px; }
#registro-telefono { padding: 5px; }

#verification-popup,
#verification-code,
#verify-code-btn,
#verify-code-close {
    font-size: large;
}

#verification-code { border-radius: 5px; }
#verify-code-btn, #verify-code-close { margin-top: 10px; }

/* ------------ MAIN SCREEN ------------ */
#main-screen {
    position: absolute;
}

/* ------------ CUESTIONES DE ESTADO ------------ */
#cuestiones-screen {
    position: relative;
    width: 90%;
    margin: 0 auto;
    font-size: larger;
    align-items: flex-start;
    justify-content: flex-start;
}

#cuestiones-table {
    border-collapse: collapse; /* Une los bordes de las celdas */
    width: 100%;
    background-color: white; /* Fondo blanco para evitar transparencias */
}

#cuestiones-table th, 
#cuestiones-table td {
    border: 3px solid black; /* Color del borde */
    text-align: left;
    max-width: 600px;
    padding: 8px;
}

/* Ajustes de la primera columna */
#cuestiones-table tr:first-child td:first-child {
    white-space: nowrap;
    overflow: hidden;    
    text-overflow: ellipsis;   /* corta con "..." */
    max-width: 10vh;      
}
#cuestiones-table th:first-child,
#cuestiones-table td:first-child {
    max-width: 10vh;   
    white-space: normal;  /* permite que el texto se divida en varias líneas */
    word-wrap: break-word; /* fuerza corte de palabra si es muy larga */
}

/* Ajustes resto de columnas */
/* Segunda columna */
#cuestiones-table td:nth-child(2) {
    max-width: 30vh;
    white-space: normal;
    word-wrap: break-word;
}
/* Tercera columna */
#cuestiones-table td:nth-child(3) {
    max-width: 20vh;
    white-space: normal;
    word-wrap: break-word;
}
/* Cuarta columna */
#cuestiones-table td:nth-child(4) {
    max-width: 20vh;
    white-space: normal;
    word-wrap: break-word;
}
/* Quinta columna */
#cuestiones-table td:nth-child(5) {
    max-width: 20vh;
    white-space: normal;
    word-wrap: break-word;
}

.enfoque {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.enfoque:hover {
    background-color: rgba(175, 230, 255) !important;
}

/* ------------ CARDS DE CUESTIONES (escritorio y móvil) ------------ */
#cuestiones-cards {
    width: 100%;
}

.cuestiones-card {
    background: white;
    border: 2px solid #b0ddf0;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card-titulo {
    font-size: 2.1rem;
    color: #0056b3;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0f0f8;
}

.card-seccion {
    margin-bottom: 12px;
}

.card-label {
    color: #0056b3;
    font-size: 1.5rem;
}

.card-seccion p {
    margin: 6px 0;
    font-size: 1.3rem;
    line-height: 1.6;
}

.card-propuesta {
    background: rgba(175, 230, 255, 0.15);
    border: 1px solid #b0ddf0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.card-propuesta:hover {
    background: rgba(175, 230, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.15);
}

.propuesta-texto {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.propuesta-resultado {
    font-size: 1.25rem;
    color: #444;
    border-top: 1px solid #e0e0e0;
    padding-top: 10px;
    margin-top: 6px;
    line-height: 1.5;
}

/* ------------ LEGISLACIÓN ------------ */
#opciones-legislacion {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: x-large;
    min-width: 300px;
}

#opciones-legislacion h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

#opciones-legislacion button {
    font-size: 1.4rem;
    padding: 12px 20px;
}
#edit-passvote-vote {
    background-color:rgba(254, 224, 196, 0.9);
    color: black ;
}
#edit-passvote-vote:hover {
    background-color: rgb(255, 211, 171);
}

#edit-passvote-settings {
    background-color:rgba(254, 224, 196, 0.9);
    color: black ;
}
#edit-passvote-settings:hover {
    background-color: rgb(255, 211, 171);
}

/* ------------ LEGISLACIÓN NACIONAL ------------ */    
#nacional-screen {
    position: absolute;
    background: white;
    color: black; /* Ajusta el color del texto */
    padding: 20px; /* Relleno interno */
    border-radius: 5px; /* Bordes redondeados */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra sutil */
    margin-top: 20px; /* Espacio por encima */
}

/* ------------ INICIATIVAS LEGISLATIVAS APROBADAS ------------ */
#legislativas-screen {
    padding: 20px;
    font-size: large;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}
#iniciativas-lista {
    list-style-type: square;
}
#iniciativas-lista li:nth-child(odd) {
    background-color: rgba(175, 230, 255, 0.6); /* Color de fondo alternado para las filas */
}

#iniciativas-lista li:hover {
    background-color: rgba(175, 230, 255); /* Efecto hover en las filas */
}

.iniciativa-item {
    display: flex;
    justify-content: space-between;
    padding: 8px;
}

.iniciativa-item:nth-child(odd) {
    background-color: rgba(175, 230, 255, 0.5);
}

.iniciativa-item:hover {
    background-color: rgba(175, 230, 255);
}

.iniciativa-item .acciones {
    display: flex;
    gap: 10px;
    align-items: center;
}

#filtros,
#iniciativas-lista {
    margin-left: 0;
    padding-left: 0;
}

/* ------------ PANTALLA DE VOTACIÓN ------------ */
#votacion-screen {
    position: absolute;
    background: white; /* Fondo blanco */
    padding: 20px; /* Relleno interno */
    border-radius: 5px; /* Bordes redondeados */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra sutil */
    margin-top: 20px; /* Espacio por encima */
}

#votacion-botones {
    display: flex;
    justify-content: flex-start; /* Alinear los botones al inicio (izquierda) */
    gap: 15px; /* Añadir espacio entre los botones */
    margin-top: 15px; /* Añadir espacio superior a los botones */
}

/* ------------ PANTALLA DE CONFIRMACIÓN DE VOTO ------------ */
.hidden {
    display: none; /* Ocultar elementos con esta clase */
}

#popup-message {
    margin-bottom: 20px; /* Espacio entre el mensaje y el botón */
}

/* ------------ PANTALLA DE CONTACTA ------------ */
#contacta-screen {
    list-style-type:square;
}

#opciones-colabora {
    position: absolute; /* Posicionamiento absoluto */
    left: 55%; /* A la derecha del botón */
    top: 40%; /* Alineado con la parte superior del botón */
    padding: 20px; /* Relleno interno */
    border-radius: 10px; /* Bordes redondeados */
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra sutil */
}

/* ------------ FORMULARIO DE CONTACTO ------------ */
#consulta-screen fieldset {
    margin-bottom: 12px;
    border: 1px solid #d0e4f0;
    border-radius: 8px;
    padding: 16px;
}

#consulta-screen fieldset legend {
    font-weight: bold;
    color: #333;
    padding: 0 8px;
}

#consulta-screen input[type="submit"] { /* Espacios con el botón de enviar */
    margin-top: 10px; 
    margin-bottom: 10px;
}

#consulta-form input[type="text"],
#consulta-form input[type="email"],
#consulta-form input[type="tel"],
#consulta-form textarea {
    width: 250px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 8px 12px;
    border: 1px solid #d0e4f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#consulta-form input:focus,
#consulta-form textarea:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
/* Campo de descripción que se ajusta automaticámente a la longitud del contenido del texto */
#descripcion-contacta{
    align-items: center;
    margin-top: 10px; 
    max-height: 300px;
    min-height: 50px;
    min-width: 350px;
    max-width: 350px;
    field-sizing: content; 
}

/* ------------ ESTILOS PARA MÓVILES ------------ */
@media (max-width: 950px) {
    /* ------------ OVERALL ------------ */ 
    .screen {
        max-width: 95vh;    
        zoom: 55%;
    }
    /* ------------ ENCABEZADO ------------ */ 
    .encabezado {
        gap: 6px;
        zoom: 100%;
        margin: 0;
        height: fit-content;
        padding: 5px 0;
    }
    .navegacion {
        gap: 10px;
    }
    .nav-link {
        font-size: 12px;
    }   
    .logo {
        gap: 2px;
        margin-left: 8px;
        font-size: 6px;
    }
    /* ------------ INICIO ------------ */ 
    .inicio-class {
        height: 85vh;
        background-size: 105%;
        background-position-x: 50%;
        background-position-y: -5%;
        margin-top: 0;
        padding-top: 0;
    }
    .inicio-box-title {
        margin-top: 5%; 
        margin-left: 0%;
        text-align: left;
        margin-bottom: 10%;
        font-size: small;
    }
    .inicio-box-subtitle {
        width: 80%; 
        margin-top: 20%; 
        align-self: center;
        font-size: large;
    }
    .inicio-explain {
        margin-top: -20%;
        font-size: large;
    }
    /* ------------ ¿QUIÉNES SOMOS? ------------ */ 
    #about_us-screen {
        zoom: 88%;
        width: 100%;
    }
    .carousel-item {
    font-size: 1rem; 
    }
    /* ------------ LOGIN SCREEN ------------ */ 
    #login-screen {
        font-size: small;
        zoom:100%
    }
    #login-form input, #login-form button {
        padding: 5px;
        font-size: small;
    }

    /* ------------ RESULTADOS ------------ */ 
    .table{
        max-height: 101vh;
        overflow-x: auto;
    }
    #contenedor-tabla {
        zoom: 82%;
        margin-top: 1vh;
    }
    .filtro-input {
        font-size: 14px;
        padding: 8px;
    }
    #resultados-table {
        font-size: 12px;
        table-layout: auto;
    }
    #resultados-table thead th {
        padding: 4px;
    }
    #resultados-table th, #resultados-table td {
        padding: 6px 4px;
    }
    /* ------------ PANTALLA DE REGISTRO ------------ */ 
    #registro-form input,
    #registro-form textarea,
    #registro-form select,
    #registro-form button {
        font-size: 20px;
    }
    #registro-form-container {
        zoom: 60%;
    }
    /* ------------ VOTACIÓN ------------ */ 
    #legislativas-screen {
        zoom: 60%;
        max-height: 98vh;
        font-size: 1.3rem;
    }

    #legislativas-screen h2 {
        font-size: 2rem;
    }

    #legislativas-screen #filtros input,
    #legislativas-screen #filtros select {
        font-size: 1.2rem;
        padding: 10px;
    }

    #iniciativas-lista {
        list-style-type: square;
    }

    .iniciativa-item {
        font-size: 1.2rem;
    }

    /* ------------ RESULTADOS MÓVIL ------------ */
    #resultados {
        font-size: 1.5rem;
    }

    #resultados h3 {
        font-size: 1.8rem;
    }

    #resultados button {
        font-size: 1.3rem;
    }

    /* ------------ OPCIONES LEGISLACIÓN MÓVIL ------------ */
    #opciones-legislacion h3 {
        font-size: 1.8rem;
    }

    #opciones-legislacion button {
        font-size: 1.4rem;
    }

    #resultados-table {
        font-size: 14px;
        table-layout: auto;
    }

    /* ------------ CONTACTA MÓVIL ------------ */
    #contacta-screen {
        font-size: 1.5rem;
    }

    #contacta-screen h3 {
        font-size: 1.8rem;
    }

    #contacta-screen button {
        font-size: 1.4rem;
    }

    #consulta-screen {
        font-size: 1.3rem;
    }

    #consulta-screen h3 {
        font-size: 1.7rem;
    }

    #consulta-screen input,
    #consulta-screen textarea,
    #consulta-screen label {
        font-size: 1.2rem;
    }

    #consulta-screen fieldset legend {
        font-size: 1.3rem;
    }

    #cuestiones-screen {
        width: 100%;
        zoom: 55%;
    }

    .card-titulo { font-size: 1.9rem; }
    .card-label { font-size: 1.5rem; }
    .card-seccion p { font-size: 1.35rem; }
    .propuesta-texto { font-size: 1.4rem; }
    .propuesta-resultado { font-size: 1.3rem; }
} 
/* ------------ ESTILOS PARA PANTALLA PORTÁTIL ------------ */
@media (max-width: 1700px) {
    .inicio-class {
        font-size: larger;
    }
    .inicio-box-title {
        margin-left: 2%;
        margin-top: 6%; 
        margin-bottom: -2%;
    }
    #registro-form {
        zoom: 90%;
    }

}    