.application-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.application-form .progress-bar {
  display: flex;
  justify-content: space-between;
  margin: 60px auto;
  position: relative;
  max-width: 500px;
  padding: 0 20px;
}

.application-form .progress-bar:before {
  content: "";
  position: absolute;
  top: 30%;
  left: 60px;
  right: 60px;
  height: 2px;
  background: #232B46;
  z-index: 0;
  transform: translateY(-50%);
}

.application-form .progress-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 10px;
}

.application-form .progress-step__number {
  width: 40px;
  height: 40px;
  background: #080F28;
  border: 2px solid #232B46;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #979aae;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.application-form .progress-step__number:after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.application-form .progress-step__label {
  color: #979aae;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  opacity: 0.7;
  white-space: nowrap;
}

.application-form .progress-step.active .progress-step__number {
  border-color: #40BABF;
  color: #40BABF;
}

.application-form .progress-step.active .progress-step__number:after {
  border-color: rgba(64, 186, 191, 0.2);
}

.application-form .progress-step.active .progress-step__label {
  color: #40BABF;
  opacity: 1;
}

.application-form .progress-step.complete .progress-step__number {
  background: #40BABF;
  border-color: #40BABF;
  color: #fff;
}

.application-form .progress-step.complete .progress-step__number:after {
  border-color: rgba(64, 186, 191, 0.3);
}

.application-form .progress-step.complete .progress-step__label {
  color: #40BABF;
  opacity: 1;
}

.application-form .progress-step.complete + .progress-step .progress-step__number {
  border-color: #40BABF;
}

.application-form .form-steps {
  position: relative;
  margin: 0 auto;
  max-width: 600px;
}

.application-form .form-step {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateX(40px);
  pointer-events: none;
}

.application-form .form-step.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: all;
  position: relative;
}

.application-form .form-step__title {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 0;
  color: #40BABF;
  font-size: 28px;
  font-weight: 600;
}

.application-form .form-step__description {
  text-align: center;
  margin: -20px auto 40px;
  max-width: 600px;
}

.application-form .form-step__description p {
  color: #979aae;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

.application-form .role-choices {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 40px 0;
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .application-form .role-choices {
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
  }
}

.application-form .role-choice {
  position: relative;
  display: block;
  cursor: pointer;
  width: 300px;
}

@media (max-width: 768px) {
  .application-form .role-choice {
    width: 100%;
    max-width: 300px;
  }
}

.application-form .role-choice__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.application-form .role-choice__input:checked + .role-choice__content {
  border-color: #40BABF;
  background: linear-gradient(165deg, rgba(64, 186, 191, 0.15) 0%, rgba(64, 186, 191, 0.05) 100%);
  transform: translateY(-2px);
}

.application-form .role-choice__input:checked + .role-choice__content .role-choice__tag {
  background: #40BABF;
  color: #fff;
}

.application-form .role-choice__content {
  background: #080F28;
  border: 1px solid #232B46;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.application-form .role-choice__header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(35, 43, 70, 0.5);
}

.application-form .role-choice__tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(64, 186, 191, 0.1);
  border-radius: 20px;
  color: #40BABF;
  font-size: 13px;
  font-weight: 500;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.application-form .role-choice__description {
  text-align: left;
}

.application-form .role-choice__requirements {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.application-form .role-choice__requirements li {
  color: #979aae;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.application-form .role-choice__requirements li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3334 4L6.00008 11.3333L2.66675 8' stroke='%2341BCBF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
}

.application-form .role-choice__requirements li:last-child {
  margin-bottom: 0;
}

.application-form .role-choice:hover .role-choice__content {
  border-color: #40BABF;
  transform: translateY(-2px);
}

.application-form .role-choice h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.application-form .role-choice p {
  margin: 10px 0 0;
  color: #979aae;
  font-size: 15px;
  line-height: 1.5;
}

.application-form .form-group {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.application-form .form-group .blackbox-input-group {
  width: 100%;
}

.application-form .blackbox-input-group {
  position: relative;
  margin-bottom: 32px;
  padding: 2px;
  border-radius: 12px;
  width: 100%;
  background-color: #232B46;
  border: none;
  height: 80px;
}

.application-form .blackbox-input-group,
.application-form .blackbox-input-group * {
  box-sizing: border-box;
}

.application-form .blackbox-input-group .blackbox-input-label {
  position: absolute;
  top: 28px;
  left: 33px;
  color: #979aae;
  font-size: 16px;
  line-height: 24px;
  transition: 100ms ease all;
  pointer-events: none;
}

.application-form .blackbox-input-group .blackbox-input {
  background-color: #050A20;
  width: 100%;
  padding: 18px 32px 0;
  border-radius: 12px;
  border: none;
  color: #fff;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  height: 100%;
}

.application-form .blackbox-input-group .blackbox-input:focus,
.application-form .blackbox-input-group .blackbox-input:valid {
  outline: none;
}

.application-form .blackbox-input-group .blackbox-input:focus + .blackbox-input-label,
.application-form .blackbox-input-group .blackbox-input:valid + .blackbox-input-label {
  top: 16px;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.1px;
}

.application-form .blackbox-input-group .blackbox-input.fake-placeholder::-moz-placeholder {
  font-size: 0;
  color: transparent;
}

.application-form .blackbox-input-group .blackbox-input.fake-placeholder:-ms-input-placeholder {
  font-size: 0;
  color: transparent;
}

.application-form .blackbox-input-group .blackbox-input.fake-placeholder::placeholder {
  font-size: 0;
  color: transparent;
}

.application-form .blackbox-input-group .blackbox-input.fake-placeholder:not(:-moz-placeholder-shown) + .blackbox-input-label {
  top: 16px;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.1px;
}

.application-form .blackbox-input-group .blackbox-input.fake-placeholder:not(:-ms-input-placeholder) + .blackbox-input-label {
  top: 16px;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.1px;
}

.application-form .blackbox-input-group .blackbox-input.fake-placeholder:not(:placeholder-shown) + .blackbox-input-label {
  top: 16px;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.1px;
}

.application-form .blackbox-input-group:focus-within {
  border: none;
  background-image: linear-gradient(105deg, #258cbf, #4ed3be);
}

.application-form .blackbox-input-group.has-feedback .feedback {
  right: -20%;
  top: 20px;
  max-width: 170px;
  position: absolute;
  border-radius: 5px;
  padding: 8px;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
}

.application-form .blackbox-input-group.has-feedback .feedback.error {
  background-image: linear-gradient(284deg, #fb6d7a, #c52374);
}

.application-form .blackbox-input-group.textarea {
  height: auto;
  margin-bottom: 40px;
}

.application-form .blackbox-input-group.textarea .blackbox-input {
  min-height: 120px;
  resize: vertical;
  padding: 28px 32px 10px;
}

.application-form .blackbox-input-group .input-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  text-align: left;
  padding: 0 4px;
  color: #979aae;
  font-size: 13px;
  opacity: 0.7;
}

.application-form .blackbox-input-group .feedback.error {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  text-align: left;
  padding: 0 4px;
  color: #FB6D7A;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.application-form .blackbox-input-group .feedback.error:before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 4.66667V7M7 9.33333H7.00667M13 7C13 10.3137 10.3137 13 7 13C3.68629 13 1 10.3137 1 7C1 3.68629 3.68629 1 7 1C10.3137 1 13 3.68629 13 7Z' stroke='%23FB6D7A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
  flex-shrink: 0;
}

.application-form select.blackbox-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2341BCBF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.application-form select.blackbox-input option {
  background: #080F28;
  color: #fff;
  padding: 12px;
}

.application-form select.blackbox-input[multiple] {
  padding: 12px;
  min-height: 120px;
  height: auto;
  background-image: none;
}

.application-form select.blackbox-input[multiple] option {
  margin-bottom: 4px;
  padding: 8px;
  border-radius: 6px;
}

.application-form select.blackbox-input[multiple] option:checked {
  background: rgba(64, 186, 191, 0.2);
}

.application-form select.blackbox-input[multiple] option:hover {
  background: rgba(64, 186, 191, 0.1);
}

.application-form .selector {
  width: 330px;
}

@media screen and (max-width: 767px) {
  .application-form .selector {
    margin: 0 auto 67px auto;
  }
}

.application-form .selector .booster-selection-wrapper {
  display: flex;
  margin-right: 0;
  color: #fff;
  border-radius: 8px;
  border: 2px solid #232B46;
  background-color: #050A20;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 56px;
}

.application-form .selector .booster-selection-wrapper .booster-rank-selection-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.application-form .selector .booster-selection-wrapper .booster-rank-selection-wrapper .booster-rank-selection {
  font-family: "Poppins", sans-serif;
  min-width: 188px;
}

.application-form .selector .booster-selection-wrapper .booster-rank-selection-wrapper select {
  width: 100%;
  cursor: pointer;
}

.application-form .selector .booster-selection-wrapper .booster-rank-selection-wrapper select.booster-rank-selection {
  display: flex;
  width: 100%;
  background-color: #050A20;
  color: #fff;
  border: none;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.application-form .selector .booster-selection-wrapper .booster-rank-selection-wrapper select.booster-rank-selection:focus {
  outline: none;
}

.application-form .selector .booster-selection-wrapper .booster-rank-selection-wrapper .select2.select2-container--default .select2-selection--single {
  background-color: #050A20;
  color: #fff;
  border: none;
  width: 100%;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.11px;
}

.application-form .selector .booster-selection-wrapper .booster-rank-selection-wrapper .select2.select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 100%;
  display: flex;
  align-content: center;
  color: #fff;
  padding: 0 24px;
}

.application-form .selector .booster-selection-wrapper .booster-rank-selection-wrapper .select2.select2-container--default .select2-selection--single .select2-selection__selected {
  background-color: red;
}

.application-form .selector .booster-selection-wrapper .booster-rank-selection-wrapper .select2.select2-container--default .select2-selection--single .select2-selection__arrow b {
  background-color: transparent;
  background-size: contain;
  border: none;
}

.application-form .selector .booster-selection-wrapper .booster-rank-selection-wrapper .select2.select2-container--default .select2-selection--single:focus {
  outline: none;
}

.application-form .selector .booster-selection-wrapper .booster-rank-selection-wrapper .dropdown-icon {
  right: 40px;
  top: 50%;
  position: absolute;
  width: 5px;
  height: 7px;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
}

.application-form .selector .booster-selection-wrapper .booster-rank-selection-wrapper .dropdown-icon img {
  width: 30px;
  height: 30px;
  transition-duration: 0.3s;
  transition-property: transform;
}

.application-form .selector .booster-selection-wrapper .booster-input-group label {
  font-size: 12px;
  color: #979aae;
  padding-bottom: 5px;
  pointer-events: none;
}

.application-form .selector .booster-selection-wrapper:hover {
  border: solid 2px rgba(255, 255, 255, 0.3);
}

.application-form .selector .booster-selection-wrapper.mw240 {
  max-width: 240px;
}

.application-form .selector .booster-selection-wrapper:nth-child(1),
.application-form .selector .booster-selection-wrapper.booster-selection-wrapper-middle {
  margin-right: 24px;
}

.application-form .selector .booster-selection-wrapper.hidden {
  display: none;
}

.application-form .selector .booster-selection-wrapper.invisible {
  visibility: hidden;
}

.application-form .form-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px auto 0;
  padding-bottom: 60px;
  max-width: 600px;
  position: relative;
  z-index: 10;
}

.application-form .button {
  min-width: 180px;
  height: 56px;
  border-radius: 31.5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.application-form .button--primary {
  background: #4842D1;
  border: solid 2px rgba(255, 255, 255, 0.08);
  color: #fff;
}

.application-form .button--primary:hover:not(:disabled) {
  background: #443cd6;
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

.application-form .button--secondary {
  background: #050A20;
  border: solid 2px rgba(255, 255, 255, 0.08);
  color: #fff;
}

.application-form .button--secondary:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.2);
}

.application-form .button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.application-form .feedback.error {
  color: #FB6D7A;
  font-size: 13px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.application-form .feedback.error:before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 4.66667V7M7 9.33333H7.00667M13 7C13 10.3137 10.3137 13 7 13C3.68629 13 1 10.3137 1 7C1 3.68629 3.68629 1 7 1C10.3137 1 13 3.68629 13 7Z' stroke='%23FB6D7A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
  flex-shrink: 0;
}

.application-form .role-choice__error {
  color: #FB6D7A;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.application-form .role-choice__error:before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 4.66667V7M7 9.33333H7.00667M13 7C13 10.3137 10.3137 13 7 13C3.68629 13 1 10.3137 1 7C1 3.68629 3.68629 1 7 1C10.3137 1 13 3.68629 13 7Z' stroke='%23FB6D7A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
  flex-shrink: 0;
}

.application-form .hidden {
  display: none !important;
}

.booster-selection-wrapper {
  position: relative;
  margin-bottom: 24px;
}

