.reg-form__main-container {
  max-width: 650px;
  margin: auto;
}
.reg-form__pages-container {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 25px 0 20px 0;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
}
.reg-form__heading {
  font-weight: 300;
  text-align: center;
  margin-bottom: 0;
  margin-top: 15px;
  font-size: 2.1rem;
}
.reg-form__page-body {
  padding: 40px;
  max-width: 600px;
  margin: auto;
}
.reg-form .form__label {
  font-weight: 400;
}
.reg-form .form__control {
  font-weight: 300;
  background-color: rgba(255, 255, 255, 0.7);
}
.reg-form .form__actions {
  margin-top: 0;
  margin-bottom: 20px;
}
.reg-form__page--final .reg-form__page-body {
  font-weight: 300;
}
.reg-form__page--final .reg-form__page-body > p {
  color: #404040;
}
.reg-form__page--final .reg-form__page-body #successful-email {
  font-weight: 500;
}

.progress-tracker {
  display: flex;
  font-family: "Roboto", sans-serif;
  margin-bottom: 30px;
}
.progress-tracker__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 33.3333333%;
}
.progress-tracker__step:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 20px;
  left: calc(50% + 20px);
  height: 1px;
  width: calc(50% - 20px);
  background: #e8e8e8;
  z-index: 0;
  transition: all 0.3s;
}
.progress-tracker__step:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  height: 1px;
  width: calc(50% - 20px);
  background: #e8e8e8;
  z-index: 0;
  transition: all 0.3s;
}
.progress-tracker__step[data-status=completed] .progress-tracker__number::after {
  font-family: "Font Awesome 6 Pro";
  content: "\f00c";
}
.progress-tracker__step[data-status=completed]:not(:last-of-type)::after {
  background: #f46246;
}
.progress-tracker__step[data-status=completed]:not(:first-of-type)::before {
  background: #f46246;
}
.progress-tracker__step[data-status=active] .progress-tracker__number {
  transform: scale(1.1);
}
.progress-tracker__step[data-status=active]:not(:first-of-type)::before {
  background: #f46246;
}
.progress-tracker__step[data-status=active] .progress-tracker__number {
  background-color: #172243;
  border-color: #f46246;
  color: #fff;
}
.progress-tracker__step[data-status=invalid] .progress-tracker__number {
  background-color: #cf002f;
  border-color: #f46246;
  color: #fff;
}
.progress-tracker__step[data-status=completed] .progress-tracker__number {
  background-color: #f46246;
  border-color: #f46246;
  color: #fff;
}
.progress-tracker__number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  z-index: 1;
  transition: all 0.3s;
}
.progress-tracker__number::after {
  content: attr(data-value);
}
.progress-tracker__name {
  margin-top: 5px;
  font-size: 16px;
  color: #fff;
}

.account-form__panel {
  max-width: 450px;
  padding: 40px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
}
.account-form__panel--role-activation, .account-form__panel--account-activation {
  max-width: 550px;
}
.account-form__panel--role-activation p, .account-form__panel--account-activation p {
  color: #000;
}
.account-form__panel--account-activation {
  font-weight: 300;
}
.account-form__heading {
  text-align: center;
  text-transform: uppercase;
}
.account-form__panel--role-activation .account-form__heading {
  text-align: left;
}
.account-form__title {
  margin-bottom: 50px;
  font-size: 2.3rem;
  font-weight: 600;
}
.account-form__title--small {
  margin-bottom: 30px;
  font-size: 2rem;
}
.account-form__panel--role-activation .account-form__title {
  text-transform: none;
}
.account-form__activation-message {
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.account-form__activation-message > p {
  font-size: 16px;
}
.account-form__activation-message > p:last-of-type {
  margin: 0;
}
.account-form__forgot-password {
  margin-top: 12px;
  font-size: 15px;
  text-align: right;
}
.account-form__button {
  justify-content: center !important;
  width: 100%;
  border-radius: 30px !important;
}
.account-form__button::after {
  border-radius: 30px !important;
}
.account-form__sign-up-options {
  margin-top: 80px;
  font-weight: 300;
  text-align: center;
}
.account-form__sign-up-options > a {
  font-weight: 500;
  text-transform: uppercase;
}
.account-form__sign-up-options .sign-up__message {
  font-size: 16px;
}
.account-form__description {
  font-size: 16px;
  font-weight: 300;
}
.account-form .form__label {
  font-weight: 400;
}
.account-form .form__control {
  font-weight: 300;
  background-color: rgba(255, 255, 255, 0.6);
}
.account-form__ts-and-cs {
  position: relative;
  bottom: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}
.account-form__ts-and-cs > span {
  font-weight: 500;
}

.sign-in-form .form__label {
  font-weight: 400;
}
.sign-in-form .form__control {
  font-weight: 300;
  background-color: rgba(255, 255, 255, 0.6);
}

.section--account {
  background-color: rgba(0, 0, 0, 0);
}

.judge-ts-and-cs {
  text-align: left;
}
.judge-ts-and-cs__item {
  margin-bottom: 15px;
}
.judge-ts-and-cs__item::marker {
  font-weight: 700;
}

.swal2-popup {
  border-radius: 0 !important;
}

.swal2-styled.swal2-confirm,
.swal2-styled.swal2-cancel {
  background-color: transparent !important;
  border-radius: 0 !important;
  border: 3px solid !important;
  padding: 0.4em 1.1em !important;
  transition: all 0.2s;
}
.swal2-styled.swal2-confirm:focus,
.swal2-styled.swal2-cancel:focus {
  outline: 0 !important;
  box-shadow: none !important;
}
.swal2-styled.swal2-confirm:hover,
.swal2-styled.swal2-cancel:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.swal2-styled.swal2-confirm {
  background-color: #f46246 !important;
  border-color: #f46246 !important;
  color: #fff !important;
}
.swal2-styled.swal2-confirm:hover {
  background-image: none !important;
  background-color: #f46246 !important;
  color: #fff !important;
}

.swal2-styled.swal2-cancel {
  background-color: #ffde21 !important;
  border-color: #ffde21 !important;
  color: #fff !important;
}
.swal2-styled.swal2-cancel:hover {
  background-image: none !important;
  background-color: #ffde21 !important;
  color: #fff !important;
}

.swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation {
  backdrop-filter: blur(2px) !important;
}

.swal2-title {
  padding: 20px !important;
  color: #404040 !important;
  font-size: 22px !important;
  background: #D9DEEA !important;
  margin-bottom: 20px !important;
}

.swal2-html-container {
  margin: 1rem 1.6rem !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
}
.swal2-html-container > p {
  font-size: 1rem !important;
}

/*# sourceMappingURL=account.css.map */
