body {
    font-family: 'Arial', sans-serif; 
    margin: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    height: 100vh; 
    overflow: hidden; 
    position: relative; 
       background: url('/public/images/fond.jpg') center center fixed;
    background-size: cover; 
    opacity: 0; 
    animation: fadeIn 1s forwards; 
    backdrop-filter: blur(5px);
    background-attachment: fixed; /* Mantiene el fondo fijo al desplazarse */
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
    overflow-y: auto; /* Habilitar desplazamiento si es necesario */
}


  
@keyframes fadeIn {
    to {
        opacity: 1; 
    }
}
p{color: #000000;}
/*******menu del turno****/
.input-select {
    width: 100%;
    padding: 12px; /* Espaciado interno */
    margin-bottom: 20px; /* Espacio inferior */
    border-radius: 10px; /* Bordes redondeados */
    border: 2px solid #ccc; /* Usando el color del borde de los inputs */
    background-color: #f0f0f0;
 /* Color de fondo similar a los inputs */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Transiciones suaves */
    font-size: 1rem; /* Tamaño de fuente */
    appearance: none; /* Elimina el estilo por defecto del navegador */
    -webkit-appearance: none; /* Elimina el estilo por defecto en Safari */
    -moz-appearance: none; /* Elimina el estilo por defecto en Firefox */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23999" d="M7 10l5 5 5-5z"/></svg>'); /* Flecha personalizada */
    background-repeat: no-repeat;
    background-position: right 10px center; /* Posición de la flecha */
    background-size: 15px; /* Tamaño de la flecha */
}

/* Efecto al enfocar el select */
.input-select:focus {
    border-color: #00f5d4; /* Color del borde al enfocar, igual que el efecto de los inputs */
    outline: none; /* Sin borde de enfoque por defecto */
    box-shadow: 0 0 8px rgba(0, 245, 212, 0.7); /* Sombra de enfoque */
}

/* Opcional: Estilo para el contenedor del select */
.grid-item {
    position: relative; /* Necesario para posicionar la flecha si se usa */
}


/********************************FOOTER*********************************************** */
  
.footer {
    background-color: rgba(60, 60, 60, 0.702);
    color: white;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    position: relative;
    
   
    left: 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}

.logo-container {
    margin-bottom: 15px;
    position: absolute;
    top: -5px;
    left: 10px; /* Ajusta según el diseño */
}

.logo-container img {
    max-width: 100px;
    height: auto;
}

.footer-content {
    text-align: center;
    padding: 10px 0;
}

.social-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.social-links a:hover img {
    transform: scale(1.1);
}

footer p {
    margin: 5px 0;
}
/* Media Query para pantallas pequeñas */
@media screen and (max-width: 768px) {
    .footer {
        padding: 15px;
    }

    .footer-container {
        padding: 0 10px;
    }

    .logo-container {
        position: static;
        margin-bottom: -10px;
        text-align: center;
    }

    .footer-content {
        padding: 5px 0;
    }

    .social-links {
        margin-top: 10px;
        gap: 10px;
    }

    .social-links a img {
        width: 25px;
        height: 25px;
    }

    footer p {
        font-size: 12px;
    }
}

/* Media Query para pantallas muy pequeñas (móviles) */
@media screen and (max-width: 480px) {
    .footer {
        padding: 30px;
    }

    .footer-container {
        padding: 0 5px;
    }

    .logo-container {
        margin-bottom: -10px;
    }

    .footer-content {
        padding: 5px 0;
    }

    .social-links {
        margin-top: 10px;
        gap: 8px;
    }

    .social-links a img {
        width: 20px;
        height: 20px;
    }

    footer p {
        font-size: 10px;
    }
}
/********************************************************************************/
@font-face {
    font-family: 'Magnolia';
    src: url('/public/font/Magnolia.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
h1 {
    top: 9px; /* Ajusta hacia arriba */
    margin: 5px 0 70px; /* Reduce el margen superior para subirlo más */
    text-align: center;
    margin-top: 0; /* Elimina el margen superior */
    padding-top: 20px; /* Añade un padding superior para bajarlo */
    font-family: 'Magnolia', sans-serif;  /* Fuente personalizada */
    font-size: 5rem;  /* Tamaño grande */
    color: #1e90ff;  /* Azul dodger brillante */
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.9),   /* Contorno negro más fuerte */
        0 0 15px rgba(0, 0, 0, 0.8),   /* Sombra más difusa */
        0 0 20px rgba(0, 191, 255, 1),  /* Azul brillante */
        0 0 30px rgba(0, 191, 255, 1),  /* Más resplandor azul */
        0 0 40px rgba(70, 130, 180, 1), /* Azul acero más intenso */
        0 0 50px rgba(0, 0, 255, 1),    /* Azul puro brillante */
        0 0 60px rgba(30, 144, 255, 1), /* Azul más fuerte */
        0 0 80px rgba(135, 206, 250, 1),/* Azul cielo muy brillante */
        0 0 100px rgba(135, 206, 250, 1);/* Azul cielo brillante */
    position: relative;
    animation: glowingIceEffect 2s ease-in-out infinite alternate;
}

/* Animación para el efecto de resplandor 3D con contorno negro */
@keyframes glowingIceEffect {
    0% {
        color: #1e90ff;  /* Azul dodger (inicial) */
        text-shadow: 
            0 0 10px rgba(0, 0, 0, 0.9),
            0 0 15px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(0, 191, 255, 1),
            0 0 30px rgba(0, 191, 255, 1),
            0 0 40px rgba(70, 130, 180, 1),
            0 0 50px rgba(0, 0, 255, 1),
            0 0 60px rgba(30, 144, 255, 1),
            0 0 80px rgba(135, 206, 250, 1),
            0 0 100px rgba(135, 206, 250, 1);
    }
    25% {
        color: #00bfff;  /* Azul mar brillante */
        text-shadow: 
            0 0 10px rgba(0, 0, 0, 0.9),
            0 0 15px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(0, 191, 255, 1),
            0 0 30px rgba(0, 191, 255, 1),
            0 0 40px rgba(70, 130, 180, 1),
            0 0 50px rgba(0, 0, 255, 1),
            0 0 60px rgba(30, 144, 255, 1),
            0 0 80px rgba(135, 206, 250, 1),
            0 0 100px rgba(135, 206, 250, 1);
    }
    50% {
        color: #00aaff;  /* Azul brillante */
        text-shadow: 
            0 0 10px rgba(0, 0, 0, 0.9),
            0 0 15px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(0, 191, 255, 1),
            0 0 30px rgba(0, 191, 255, 1),
            0 0 40px rgba(70, 130, 180, 1),
            0 0 50px rgba(0, 0, 255, 1),
            0 0 60px rgba(30, 144, 255, 1),
            0 0 80px rgba(135, 206, 250, 1),
            0 0 100px rgba(135, 206, 250, 1);
    }
    75% {
        color: #4682b4;  /* Azul acero intenso */
        text-shadow: 
            0 0 10px rgba(0, 0, 0, 0.9),
            0 0 15px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(0, 191, 255, 1),
            0 0 30px rgba(0, 191, 255, 1),
            0 0 40px rgba(70, 130, 180, 1),
            0 0 50px rgba(0, 0, 255, 1),
            0 0 60px rgba(30, 144, 255, 1),
            0 0 80px rgba(135, 206, 250, 1),
            0 0 100px rgba(135, 206, 250, 1);
    }
    100% {
        color: #1c86ee;  /* Azul brillante royal */
        text-shadow: 
            0 0 10px rgba(0, 0, 0, 0.9),
            0 0 15px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(0, 191, 255, 1),
            0 0 30px rgba(0, 191, 255, 1),
            0 0 40px rgba(70, 130, 180, 1),
            0 0 50px rgba(0, 0, 255, 1),
            0 0 60px rgba(30, 144, 255, 1),
            0 0 80px rgba(135, 206, 250, 1),
            0 0 100px rgba(135, 206, 250, 1);
    }
}

@keyframes frostGlow {
    from {
        text-shadow: 0 0 20px rgba(173, 216, 230, 0.8), 0 0 40px rgba(173, 216, 230, 0.5);
    }
    to {
        text-shadow: 0 0 40px rgba(255, 255, 255, 1), 0 0 80px rgba(255, 255, 255, 0.7);
    }
}
/* Diseño general del formulario */
.formulario {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    align-items: flex-start;
    overflow-y: auto;
    animation: fadeIn 1s ease-out;
}

/* Animación para que el contenedor se deslice desde abajo */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scrolel-container {
    width: 100%;
    max-width: 800px;
    background: linear-gradient(135deg, rgba(255, 250, 250, 0.8), rgba(70, 130, 180, 0.5), rgba(240, 248, 255, 0.3));




    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    overflow-y: auto;
    animation: fadeIn 1.5s ease-out;
    transition: box-shadow 0.3s ease-in-out; /* Efecto suave de sombra */
}

.scrolel-container:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* Sombra más intensa al pasar el mouse */
}



@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }
    100% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 1);
    }
}

/* Estilo de la grilla */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-out;
}

/* Estilo para cada campo del formulario */
.grid-item {
    display: flex;
    flex-direction: column;
    animation: fadeIn 2s ease-out;
}

label {
    font-size: 1rem;
    color: #060606;
    margin-bottom: 5px;
}

/* Estilo para los inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select {
    padding: 10px;
    border: 1px solid #A9CCE3;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease-in-out; /* Transición suave */
    background-color: #ECF0F1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Efecto al hacer focus (seleccionar) un campo de texto */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus {
    border-color: #5DADE2; /* Cambia el borde a azul */
    background-color: #D5E8F7; /* Cambia el fondo a un azul claro */
    outline: none; /* Quita el borde de enfoque predeterminado */
    box-shadow: 0 0 15px rgba(93, 173, 226, 0.7); /* Resplandor azul */
    transform: scale(1.05); /* Efecto de aumento al enfocarse */
}

/* Efecto al hacer hover (pasar el mouse) sobre los campos */
input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="password"]:hover,
select:hover {
    background-color: #D5E8F7; /* Cambio de fondo a azul claro */
    box-shadow: 0 0 10px rgba(93, 173, 226, 0.5); /* Brillo suave */
}

/* Estilo para el botón de "Verificar CURP" */
button#btnVCurp {
    background-color: #5DADE2;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s ease-in-out;
}

button#btnVCurp:hover {
    background-color: #4A90D6;
    transform: scale(1.1); /* Efecto de aumento al pasar el mouse */
    box-shadow: 0 0 15px rgba(93, 173, 226, 0.6); /* Efecto de brillo */
}

/* Estilo para los botones de acción */
.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

button.borrar {
    background-color: #A9CCE3;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s ease-in-out;
}

button.borrar:hover {
    background-color: #D75C5C; /* Rojo brillante */
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.6); /* Resplandor rojo */
}

button.entrar {
    background-color: #5DADE2;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s ease-in-out;
}

button.entrar:hover {
    background-color: #4A90D6;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(93, 173, 226, 0.6); /* Brillo en azul */
}

/* Enlace */
p a {
    color: #0ebaea;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

p a:hover {
    color: #fff; /* Cambiar a blanco cuando se pasa el mouse */
    text-decoration: underline;
}

/* Estilo para los select */
.input-select {
    padding: 10px;
    border: 1px solid #e1eaf0;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-select:focus {
    border-color: #dde1e4;
    outline: none;
    box-shadow: 0 0 15px rgba(93, 173, 226, 0.7); /* Resplandor al enfocarse */
}

/* Estilo para los inputs de tipo tel */
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr 1fr;
    }
    .formulario {
        padding: 10px;
    }

    .scrolel-container {
        padding: 40px;
    }

    h1 {
        font-size: 1.5rem;
    }
    .formulario label {
        font-size: 12px; /* Aumenta el tamaño de la fuente para hacerlo más legible */
        font-weight: bold; /* Asegura que el texto sea negrita */
        color: #000000; /* Color negro intenso para un alto contraste */
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Agrega una sombra ligera para mayor claridad */
        letter-spacing: 0.5px; /* Añade un pequeño espaciado entre letras para mejorar la legibilidad */
    }
    
}
