body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    margin-right: 100px;
    height: 100vh;
    background-color: rgb(17, 17, 43);
    color: white;
    overflow-x: hidden; 
  }

  canvas {
      position: absolute; /* Asegúrate que el canvas esté detrás del contenido */
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1; /* Mantener el canvas en el fondo */
  }






  /* Contenedor de la scrollbar */
.scrollable-container {
    max-height: 300px; /* O la altura que desees */
    overflow-y: auto; /* Habilitar barra de desplazamiento vertical */
    scrollbar-color: #808080 transparent; /* Color de la thumb (gris) y el track (transparente) en Firefox */
    scrollbar-width: thin; /* Ancho de la scrollbar (para Firefox) */
    margin: 0;
}



  
  .registro-form {
      background-color: white;
      border-radius: 20px;
      padding: 20px 30px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }

  

  h1 {
      font-size: 28px;
      font-weight: bold;
      margin: 0;
      color: #000;
      letter-spacing: 2px;
  }

  p {
      font-size: 14px;
      margin: 10px 0 20px; /* Ajuste del margen */
      color: #666;
  }

  .input-box {
      width: 100%;
      margin-bottom: 10px; 
    
  }

  .input-box input,
  .input-box select {
      width: 400px; 
      padding: 15px;
      font-size: 16px;
      border-radius: 50px;
      border: 1px solid #ccc;
      text-align: center;
      color: #333;
      box-sizing: border-box;
  }

  .input-box input::placeholder,
  .input-box select {
      color: #ccc;
  }

  button {
      width: 400px; /* Mantener el tamaño original del botón */
      padding: 15px;
      font-size: 16px;
      border-radius: 50px;
      border: 1px solid #ccc;
      text-align: center;
      background-color: #1a2f87;
      color: white;
      font-size: 18px;
      cursor: pointer;
      margin: 0px;
  }

  button:hover {
      background-color: #0f1e66;
  }

  p a {
      color: #1a2f87;
      text-decoration: none;
      font-weight: bold;
  }

  p a:hover {
      text-decoration: underline;
  }

  .logo-container {
      position: fixed;
      right: 55%;
      top: 27%; 
  }

  .radio-button-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 30px;
      margin-top: 20px;
      margin-bottom: 20px;
  }
  
  .radio-button {
      display: inline-block;
      position: relative;
      cursor: pointer;
  }
  
  .radio-button__input {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
  }
  
  .radio-button__label {
      display: inline-block;
      padding-left: 30px;
      margin-bottom: 10px;
      position: relative;
      font-size: 15px;
      color: #000;
      font-weight: 600;
      cursor: pointer;
      text-transform: uppercase;
      transition: all 0.3s ease;
  }
  
  .radio-button__custom {
      position: absolute;
      top: 0;
      left: 0;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid #555;
      transition: all 0.3s ease;
  }
  
  .radio-button__input:checked + .radio-button__label .radio-button__custom {
      background-color: #1a2f87;
  }




#postimp {
    color:  #707070be;
}

/*agrego codigo*/

/* Estilo del mensaje de error */
.input-box .error {
    color: red; /* Texto del mensaje de error en rojo */
    font-size: 0.9em;
    margin-top: 5px;
    display: block; /* Asegúrate de que el error esté visible solo cuando haya un mensaje */
}
.input-box 
{
    margin-top: 20px;
}