#fail-response, #success-response, .container__result, #loading-message, #fail-response {
    display: none;
}

.iframe-style {
    width: auto;
    max-height: 3.375rem;
    padding: 0 1.125rem;
    color: #0d1214;
    border: 1px solid #7e96a7;
    border-radius: 0.1875rem;
    background-color: #fff;
    font-family: inherit;
    font-size: inherit;
  }

/* Estilos para el contenedor de la animación de carga */
#loading-container {
    position: relative;
}
  
/* Estilos para la animación de carga (puedes ajustar según tus necesidades) */
.loading-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  