body {
    background-color: #f0f0f0 !important;
  }

  .container {
    display: flex;
    align-items: center;
  }
  
  img {
    max-width: 50%; /* Puedes ajustar el tamaño de la imagen según tus necesidades */
  }
  
  #text {
    flex: 1; /* Esto permite que el párrafo ocupe el espacio restante */
    padding: 10px; /* Ajusta el espacio entre el texto y la imagen */
  }

.card{
    width: 40%;
    display: flex;
        margin-left: auto;
    margin-right: auto;
    
}
#custom-header {
    background-color: #632f83;
    font-weight: bolder;
    color: white;
    font-size: 23px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }

  .button{
    text-align: center;
    
  }


  #div1-button{
    margin-top: 60px;
    margin-bottom: 40px;
  }

  
  @media screen and (max-width: 1200px) {
    .card {
      width: 60%;
      margin-left: auto;
    margin-right: auto;
    }
  }

  @media screen and (max-width: 1000px) {
    .card {
      width: 60%;
      margin-left: auto;
    margin-right: auto;
    }
  }

  @media screen and (max-width: 752px) {
    .card {
      width: 90%;
      margin-left: auto;
    margin-right: auto;
    }
  }

  #text {
    font-size: 35px; /* Tamaño de fuente regular */
}

@media (max-width: 506px) {
  #text {
      font-size: 30px; /* Nuevo tamaño de fuente cuando la pantalla es pequeña */
  }
}

@media (max-width: 460px) {
  #text {
      font-size: 25px; /* Nuevo tamaño de fuente cuando la pantalla es pequeña */
  }

  
  
}

@media (max-width: 416px) {
  #text {
      font-size: 20px; /* Nuevo tamaño de fuente cuando la pantalla es pequeña */
  }

  img {
    max-width: 30%; /* Nuevo tamaño de fuente cuando la pantalla es pequeña */
}


  
}


  label {
    color: black;
  }
  
  label > span {
    color: red;
  }

  .hidden {
    display: none;
}

button{
  color: #9b59b6;
}


  
  
#preloader_3{
  
  position: fixed;
  top: 50%;
  left: 50%;

}
#preloader_3:before{
	width:20px;
	height:20px;
	border-radius:20px;
	background:blue;
	content:'';
	position:absolute;
	background:#9b59b6;
	animation: preloader_3_before 1.5s infinite ease-in-out;
}
#preloader_3:after{
	width:20px;
	height:20px;
	border-radius:20px;
	background:blue;
	content:'';
	position:absolute;
	background:#362ecc;
	left:22px;
	animation: preloader_3_after 1.5s infinite ease-in-out;
}
@keyframes preloader_3_before {
    0% {transform: translateX(0px) rotate(0deg)}
    50% {transform: translateX(50px) scale(1.2) rotate(260deg); background:#9b59b6;border-radius:0px;}
      100% {transform: translateX(0px) rotate(0deg)}
}
@keyframes preloader_3_after {
    0% {transform: translateX(0px)}
    50% {transform: translateX(-50px) scale(1.2) rotate(-260deg);background:#9b59b6;border-radius:0px;}
  	100% {transform: translateX(0px)}
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semitransparente */
}

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.8); /* Fondo blanco semitransparente */
  border-radius: 4px;
  margin: auto;
  margin-top: 200px;
  padding: 20px;
  text-align: center;
}

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}








