

/* Contenedor principal */
.registro-container {
  max-width: 1118px;
  margin: 30px auto;
  background: #90a4ae;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  justify-content: center;


}

/* Fila superior */
.registro-header {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}

.registro-header h2 {
  color: white;
  font-size: 28px;
}

/* Fila inferior (dos columnas) */
.registro-content {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}

/* Columna izquierda */
.registro-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.registro-img img {
  max-width: 250px;
  border-radius: 5px;
}

/* Columna derecha */
.registro-form {
  flex: 2;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  margin-right: 20px;
}

.registro-form form {
  display: flex;
  flex-direction: column;
}

.registro-form .intro-text {
  font-size: 14px;
  margin-bottom: 15px;
}

.registro-form label {
  margin-top: 10px;
  font-weight: bold;
}

.registro-form input[type="text"],
.registro-form input[type="email"],
.registro-form input[type="tel"] {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #999;
  border-radius: 4px;
  width: 100%;
  font-size: 14px;
}

.checkbox {
  margin: 15px 0;
  display: flex;
  align-items: center;
}

.checkbox label {
  margin-left: 5px;
  font-weight: normal;
}

.registro-form button {
  background: #f80174; /* fucsia */
  color: #fff;
  border: 1px solid #000;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.registro-form button:hover {
  background: #d81b60;
}
