.form-container-solicitud {
    background: rgba(255, 255, 255, 0.1); /* Fondo más transparente */
    /*backdrop-filter: blur(25px); /* Aumentar el blur */
    -webkit-backdrop-filter: blur(55px); /* Compatibilidad con Safari */
    border-radius: 25px;
    margin-top: 20px; /* Reducir espacio arriba */
    padding: 20px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); /* Más profundidad */
    width: 50%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Borde más sutil */
}
/* Truco para simular backdrop-filter */
.form-container-solicitud:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(40px); /* Aplica el blur si backdrop-filter no funciona */
    z-index: -1;
    opacity: 0.2;
}
.form-container-solicitud h1 {
    color: #003366;
    margin-bottom: 10px;
}
.form-container-solicitud h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}
input, button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}
button {
    background: #F7941E;
    color: #333333;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
}
button:hover {
    background: #D66E00;
}
h2 {
  color: #F7941E;
}
.slider-container {
    text-align: center;
    margin-bottom: 20px;
}
.slider {
    width: 90%;
    cursor: pointer;
}
.monto-display {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 18px;
    margin-top: 10px;
    color: white;
    font-weight: bold;
}
.probabilidad {
    margin-top: 10px;
    font-size: 14px;
}