body {
    font-family: Poppins, sans-serif;
    text-align: center;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* Contenedor */
.container {
    background: white;
    padding: 20px;
    margin: 50px auto;
    width: 50%;
    border-radius: 10px;
}

/* Logo */
.logo {
    width: 150px;
    margin: 20px 0;
}

/* Inputs y Botón */
input, button {
    padding: 10px;
    margin: 10px auto;
    width: 50%; /* Reducir ancho de campos al 50% */
    display: block;
}

/* Botón */
button {
    background-color: #1f3d7a;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    width: 70%; /* Reducir ancho del botón al 70% */
    font-family: Poppins, sans-serif; /* Asegurar la misma tipografía */
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Icono de lupa */
button i {
    color: white;
}

/* Hover del botón */
button:hover {
    background-color: #132549;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px 0;
    color: black;
    font-size: 14px;
    margin-top: 20px;
}

/* Responsivo */
@media (max-width: 768px) {
    .container {
        width: 80%; /* En móviles será más ancho */
    }
    input, button {
        width: 80%; /* También más anchos en móvil */
    }
}
