body, html {
    height: 100%;
    margin: 0;
    overflow: hidden; /* Eliminar scroll vertical */
    font-family: 'Roboto', sans-serif; /* Aplicar la fuente de Google */
}
.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.search-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 60%; /* 60% en desktop */
}
@media (max-width: 768px) {
    .search-container {
        width: 90%; /* 90% en dispositivos móviles */
    }
}
.search-container h2 {
    margin-bottom: 20px;
}
.search-container input {
    margin-bottom: 10px;
}
.logo {
    display: block;
    margin: 0 auto 20px auto; /* Centrar el logo y agregar margen inferior */
    max-width: 100px; /* Ajustar el tamaño del logo */
}
