.register {
  width: 90%;
  font-size: 0.8rem;
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: white;
}
.register h2 {
  font-size: 25px;
  line-height: 2rem;
  text-align: center;
  font-weight: bold;
  margin-top: 0.5em;
  text-transform: uppercase;
  color: rgb(161, 19, 103);
}
.register p {
  text-align: center;
  margin-bottom: 2rem;
}
.register p span {
  color: rgb(161, 19, 103);
}
.register form {
  font-size: 14px;
}
.register form input::placeholder,
.register form textarea::placeholder,
.register form select::placeholder {
  opacity: 0.4;
  color: #999;
}
.register form label {
  font-weight: bold;
}
.register form label.required::after {
  content: " *";
  color: rgb(161, 19, 103); /* Cambia este valor al color que prefieras */
  font-size: 1.2em;
  vertical-align: super;
}
.register form .bold-label {
  font-weight: bold;
}
.register form .form-check-label {
  font-weight: normal;
}
.register form .size-label {
  font-size: 20px;
}
.register form .last-form-section .required-fields {
  font-size: 1.2em;
  text-align: start;
  color: rgba(26, 25, 25, 0.5);
}
.register form .last-form-section .required-fields span {
  color: rgb(161, 19, 103); /* Cambia este valor al color que prefieras */
}
.register form .last-form-section button {
  width: 100%;
  height: 40px;
  font-size: 1rem;
}

@media screen and (min-width: 500px) {
  .register {
    max-width: 500px;
  }
}
@media screen and (min-width: 1158px) {
  .register {
    max-width: 70%;
  }
  .register form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5rem;
    font-size: 18px;
  }
  .register form label {
    margin-bottom: 5px;
    font-size: 19px;
  }
  .register form input::placeholder,
  .register form textarea::placeholder {
    font-size: 19px;
    opacity: 0.4;
    color: #999;
  }
  .register form .last-form-section {
    grid-column: 1/-1;
    width: 100%;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }
  .register form .last-form-section .required-fields {
    margin-bottom: 1rem;
  }
  .register form .last-form-section .payment-section {
    width: 500px;
    margin-top: 0;
  }
  .register form .last-form-section button {
    width: 350px;
    display: block;
    margin: 0 auto;
    align-self: center;
    margin-bottom: 1rem;
  }
}

/*# sourceMappingURL=register.output.css.map */
