@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(to right, #0066ff, #00ccff);*/
    background: url('img/fondo-turismo.webp') center/cover no-repeat;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 400px;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
}

input {
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 14px;
    width: 100%;
    margin-top: 5px;
}

input:read-only {
    background: rgba(255, 255, 255, 0.5);
    color: #444;
}

button {
    background: #ffcc00;
    color: #000;
    font-weight: bold;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;
}

button:hover {
    background: #ff9900;
    transform: scale(1.05);
}

.hidden {
    display: none;
}

/* Estilizar los select */
select {
    width: 100%;
    padding: 10px;
    border: 2px solid #007BFF; /* Azul moderno */
    border-radius: 8px;
    background: white;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none; /* Oculta la flecha por defecto en algunos navegadores */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23007BFF"><path d="M7 10l5 5 5-5z"/></svg>'); /* Flecha personalizada */
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

/* Efecto hover */
select:hover {
    border-color: #0056b3;
}

/* Efecto focus */
select:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    border-color: #0056b3;
}

@media screen and (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 10px;
        border-radius: 8px;
    }
    
    h1 {
        font-size: 16px;
    }

    input, select, button {
        font-size: 12px;
        padding: 6px;
    }

    button {
        padding: 8px;
    }
}


