/* 🌱 Estilos base: para móviles */
body {
    margin: 0;
    padding: 0;
    background-image: url('../img/fondo_goyo_movil.jpg'); /* Imagen por defecto en móvil */
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titulo-wrapper {
    margin-top: 40px;
    text-align: center;
    width: 100%;
}

.titulo-principal {
    display: none; /* Ocultar en móvil */
}

.contenedor {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    width: 60%;
    margin-top: 150px;
}

input[type="text"],
input[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

/* 🖥️ Estilos para pantallas grandes (por ejemplo, tablets o PC) */
@media screen and (min-width: 768px) {
    body {
        background-image: url('../img/fondo_goyo_pc.jpg'); /* Imagen para pantallas grandes */
    }

    .titulo-principal {
        display: none; 
    }

    .contenedor {
        width: 500px;
        margin-top: 80px;
    }
}
