/* Estilos del formulario de registro publico */
body {
  margin: 0;
}

.registro-container {
  max-width: 500px;
  margin: 50px auto 0;
  padding: 0 20px;
  text-align: center;
}

.registro-titulo {
  display: block;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.15;
  color: #512d6d;
  margin-bottom: 40px;
}

.registro-container .inputText {
  display: block;
  width: 100%;
  height: 62px;
  padding-left: 18.4px;
  margin-top: 20px;
  border: solid 1px #bdbdbd;
  border-radius: 8px;
  font-size: 20px;
  line-height: 1.2;
  text-align: left;
  box-sizing: border-box;
  outline: 0;
}

.registro-container .inputText:focus {
  border-color: #00bfff;
}

.registro-container .mensajeError {
  display: none;
  width: 100%;
  color: #f44336;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.22;
  text-align: left;
  margin-top: 11px;
}

.registro-row {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.registro-col {
  flex: 1;
}

.registro-col .inputText {
  margin-top: 0;
}

.registro-textos {
  max-width: 500px;
  margin: 20px auto;
  padding: 0 20px;
  text-align: center;
}

.registro-legal {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.12;
  color: #bdbdbd;
}

.registro-link {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.12;
  color: #bdbdbd;
  text-decoration: none;
}

.registro-link:hover {
  text-decoration: underline;
}

.buttonSubmit,
.buttonPopup {
  display: block;
  height: 70px;
  border-radius: 10px;
  outline: 0;
  background-color: #08c184;
  color: #ffffff;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.16;
  text-align: center;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
  border: none;
  cursor: pointer;
}

.buttonSubmit {
  width: 100%;
  max-width: 461px;
  margin: 30px auto;
  padding: 0;
}

.buttonPopup {
  width: 200px;
  margin: 30px auto 0;
  padding: 0;
}

.buttonSubmit:hover,
.buttonPopup:hover {
  box-shadow: 0 0 20px #08c184;
  -webkit-box-shadow: 0 0 20px #08c184;
  -moz-box-shadow: 0 0 20px #08c184;
}

.buttonSubmit:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.registro-login-link {
  margin: 20px 0 60px;
  text-align: center;
}

.registro-login-link span {
  color: #bdbdbd;
  font-family: "Ubuntu";
  font-size: 23px;
  font-weight: 500;
  line-height: 1.18;
}

.registro-login-link a {
  color: #08c184;
  font-family: "Ubuntu";
  font-size: 19px;
  font-weight: bold;
  line-height: 1.18;
  text-decoration: none;
}

.registro-login-link a:hover {
  text-decoration: underline;
}

/* Popups */
.tituloPopup {
  display: block;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.subTituloPopup {
  display: block;
  font-size: 18px;
  color: #512d6d;
  margin-bottom: 10px;
}

.infoPopup {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 600px) {
  .registro-row {
    flex-direction: column;
    gap: 0;
  }

  .registro-col .inputText {
    margin-top: 20px;
  }
}
