body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('img/mapa.jpg');
    background-size: cover; /* Ajusta la imagen para que cubra todo el fondo */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    text-align: center;
    padding: 20px;
}

.container {
    padding: 20px;
    background: rgba(49, 49, 49, 0.8);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.295);
    backdrop-filter: blur(20px); /* Difuminado */
    color: white
}

input, select {
    display: block;
    width: 80%;
    padding: 8px;
    margin: 10px auto;
    text-align: center;
   
    font-weight: bold;
    font-size: 20px;
}

button {
    background-color: #049196;
    color: white;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 10px;
    border: none;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}

.boton {
    display: inline-block;
    margin-top: 20px; /* Espacio entre el texto y el botón */
    margin: 20px;
    padding: 10px 20px;
    background-color: #007bff; /* Azul */
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    text-decoration: none; /* Quita el subrayado */
    border-radius: 10px; /* Bordes redondeados */
    transition: background 0.3s ease-in-out;
}

.boton:hover {
    background-color: #0056b3; /* Efecto al pasar el mouse */
}

.ticket {
    position: relative;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.2); /* Capa semitransparente */
    padding: 15px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    color: rgb(53, 52, 52);
    font-weight: bold;
    border-radius: 15px;
    overflow: hidden;
}

/* Pseudo-elemento que contendrá la imagen desenfocada */
.ticket::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/ticket2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px); /* Difuminado real */
    z-index: -1; /* Envía la imagen detrás */
}

::placeholder {
    color: rgb(102, 101, 101);
}

label{
    font-weight: bold;
    color: white;
}

.github-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    margin-top: 5px;
    text-decoration: none;
    border-radius: 100px;
    color: white;
    transition: all 0.25s ease;
}

.github-btn i {
    font-size: 40px;
}

.github-btn:hover {
    transform: translateY(-4px) scale(1.03);
    color: black;
}

.github-btn:active {
    transform: scale(0.98);
}