  .body {
    background-color: #f0f0f0; /* Color de fondo */
    text-align: center; /* Centra todo el contenido del body */
    display: block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Asegura que el contenido llene la altura de la pantalla */
   

  }

  .container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px; /* Ancho del contenedor */
       transform: translateX(0px) translateY(10px); /**lado, arriba**/
    margin: 0 auto;
   
  }

  .h1 {
    color: #333;
   
  }

 .h2 {
    color: #666;
  }

  .image-container {
    margin-bottom: 20px;
  }

  .instructions {
    margin-top: 20px;
    font-style: italic;
    color: #777;
  }

  .label {
    display: block;
    margin-bottom: 5px;
    text-align: left;
  }

  .input[type="text"],
  input[type="email"],
  .body[type="password"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Asegura que el padding no afecte el ancho */
  }

  .button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
  }

  .button:hover {
    background-color: #3e8e41;
  }



  /*contenido texto en contenedor registro**/


  .container-contenidoreg {
  display: flex;
  align-items: flex-start; /* Alinea los elementos verticalmente */
  white-space: pre-wrap;
  display:block;
  font-size: 0; /* Elimina el espacio entre inline-block */
}

.image-contenidoreg {
  width: 274px;
  height: 378px;
  margin: 30px;
           position: flex;
            right: 100px;
            margin: 10px;
            top: 8px;
   transform: translateX(86px) translateY(-30px);



}

.text-container-contenidoreg {
  margin-left: 5px; /* Espacio entre la imagen y el texto */
  display: flex;
  flex-direction: column; /* Apila el select y el texto verticalmente */
   text-align: justify;
}

.text-content-contenidoreg {
  text-align: justify;
  font-size: 15px;
  margin: 10px 0;          /* quité márgenes excesivos */
  padding: 5px;
  width: 100%;             /* ocupa toda la columna */
  max-width: 100%;         /* no supera el ancho de su contenedor */
  box-sizing: border-box;  /* asegura que padding no rompa el ancho */
  overflow-wrap: break-word; /* ajusta palabras largas */
  line-height: 1.6;        /* mejora la lectura */
}

/* Ajustes en pantallas pequeñas */
@media (max-width: 600px) {
  .text-content-contenidoreg {
    font-size: 14px;
    margin: 5px 0;
  }
}

.my-select-contenidoreg {
  margin-bottom: 5px; /* Espacio entre el select y el texto */
}


/**contenido textoreg columnas**/

.containertexreg {
  display: flex;
  align-items: center; /* Alinea verticalmente */
  justify-content: space-between; /* Distribuye los elementos */
  height: 60px; /* Altura del contenedor */
  width: 300px; /* Ancho del contenedor */
  padding: 30px;
  border: 1px solid black; /* Para visualizar el contenedor */
  margin-bottom: 20px; /* O margin-top en el segundo div */
  
}

.columntex1reg{
  width: 33%; /* Cada columna ocupa la mitad del ancho */
  text-align: justify; /* Centra el texto horizontalmente */
  padding: 10px; /* Ajusta el padding si es necesario */
}

.normal-texreg {
  font-weight: normal;
  font-family: verdana, sans-serif; /* Especifica Verdana, y un fallback genérico */
  font-size: 15px; /* Tamaño del texto para la clase normal */
  color: rgb(128, 128, 128); /* Color gris para el texto de la clase normal */
   text-align: justify;
}

.negritareg {
  font-weight: bold;
  font-family: Arial, sans-serif; /* Especifica Arial, y un fallback genérico */
  font-size: 20px; /* Tamaño del texto para la clase negrita */
  color: blue; /* Color azul para el texto de la clase negrita */
}



/* Espacio de 5px entre el nav y el select */
nav {
  margin-bottom: 5px;
}

.my-select-contenidoreg {
  margin-top: 5px;
}


/* css/style-registro-form.css */
.registro-container {
    max-width: 1118px;
    margin: 40px auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.registro-header {
    flex: 0 0 300px;
}

.registro-header h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    color: #96aebe; /* Color primario dinámico */
}

.registro-content {
    flex: 1;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.registro-content img {
    width: 274px;
    height: 376px;
    object-fit: cover;
    border-radius: 8px;
}

.registro-form {
    flex: 1;
}

.registro-form .intro-text {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

.registro-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.registro-form input,
.registro-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 10px;
}

.registro-form .checkbox {
    margin: 15px 0;
}

.registro-form button {
    background-color: #96aebe;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.registro-form button:hover {
    background-color: #7a8ca3;
}

/* Responsive */
@media (max-width: 768px) {
    .registro-container {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .registro-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .registro-content img {
        width: 100%;
        height: auto;
    }
    
    .registro-header {
        text-align: center;
    }
}