/* Estilo Aero Glass para el formulario */
.formulario-aero-glass {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-family: Arial, Helvetica, sans-serif;
    color: #373839;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-group button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #1678bd;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

/* Estilos responsivos para dispositivos móviles y tablets */
@media screen and (max-width: 768px) {
    .formulario-aero-glass {
        width: 90%;
        backdrop-filter: none; /* Desactivar el desenfoque en pantallas más pequeñas */
        background-color: rgba(255, 255, 255, 0.8); /* Incrementar la opacidad para mejorar la legibilidad sin el desenfoque */
    }
}

@media screen and (max-width: 480px) {
    .formulario-aero-glass {
        padding: 10px;
    }
}

h1{
    color: #1678bd;
    text-align: center;
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
}

.logo{
   margin-top: 20px; 
}
