/*========== Colors ==========*/
/*========== Font and typography ==========*/
/*========== Font weight ==========*/
body:has(.register) {
  background: linear-gradient(180deg, #ffffff 0%, #faf8f4 35%, #f5f0e8 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

.register {
  width: 92%;
  max-width: 1100px;
  margin: 2.5rem auto 8rem;
  padding: 2.5rem 2.75rem;
  background: #ffffff;
  border: 1px solid rgba(36, 27, 58, 0.07);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(36, 27, 58, 0.04), 0 8px 32px rgba(36, 27, 58, 0.07);
}
.register h2 {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(161, 19, 103);
  margin: 0 0 0.5rem;
}
.register > p {
  text-align: center;
  font-size: 0.825rem;
  color: rgba(36, 27, 58, 0.55);
  margin-bottom: 2rem;
}
.register > p a {
  color: rgb(161, 19, 103);
  text-decoration: none;
}
.register > p a:hover {
  text-decoration: underline;
}
.register form {
  font-size: 0.875rem;
}
.register form label {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(36, 27, 58, 0.65);
  margin-bottom: 0.35rem;
}
.register form label.required::after {
  content: " *";
  color: rgb(161, 19, 103);
  font-size: 1.1em;
  vertical-align: super;
}
.register form .form-check-label {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.875rem;
  color: rgba(36, 27, 58, 0.75);
}
.register form .form-control,
.register form .form-select {
  font-size: 0.875rem;
  border: 1px solid rgba(36, 27, 58, 0.15);
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  color: #1a1032;
  background-color: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-shadow: 0 1px 2px rgba(36, 27, 58, 0.04) inset;
}
.register form .form-control::placeholder,
.register form .form-select::placeholder {
  color: rgba(36, 27, 58, 0.3);
  font-weight: 400;
}
.register form .form-control:focus,
.register form .form-select:focus {
  border-color: rgba(161, 19, 103, 0.45);
  box-shadow: 0 0 0 3px rgba(161, 19, 103, 0.08);
  outline: none;
}
.register form .form-check {
  background: #f8f6f3;
  border: 1px solid rgba(36, 27, 58, 0.08);
  border-radius: 8px;
  padding: 0.6rem 0.9rem 0.6rem 2rem;
  margin-bottom: 0.4rem;
}
.register form fieldset, .register form .form-group-section {
  border: none;
  padding: 0;
  margin: 0;
}
.register form .bold-label {
  font-weight: 700;
}
.register form .last-form-section {
  border-top: 1px solid rgba(36, 27, 58, 0.07);
  padding-top: 1.5rem;
  margin-top: 1rem;
}
.register form .last-form-section .required-fields {
  font-size: 0.8rem;
  color: rgba(36, 27, 58, 0.4);
  margin-bottom: 1.25rem;
}
.register form .last-form-section .required-fields span {
  color: rgb(161, 19, 103);
}
.register form .last-form-section button {
  width: 100%;
  max-width: 340px;
  height: 46px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 10px;
}

@media screen and (min-width: 1024px) {
  .register {
    max-width: 1100px;
    padding: 3rem 3.5rem;
  }
  .register form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    row-gap: 0.1rem;
  }
  .register form label {
    font-size: 0.775rem;
  }
  .register form .form-control,
  .register form .form-select {
    font-size: 0.875rem;
  }
  .register form .last-form-section {
    grid-column: 1/-1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
  }
  .register form .last-form-section .required-fields {
    margin-bottom: 1rem;
  }
  .register form .last-form-section .payment-section {
    width: 480px;
    margin-top: 0;
  }
  .register form .last-form-section button {
    margin: 0 auto 1rem;
    display: block;
    align-self: center;
  }
}
@media screen and (max-width: 500px) {
  .register {
    width: 96%;
    padding: 1.5rem 1.25rem;
  }
}

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