/* =======================================
   Member Badge Styles
   ======================================= */
.member-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 4px;
  padding: 6px;
  height: 36px;
}

.member-badge--seg {
  width: 122px;
  background: #DBF4FA;
}

.member-badge--extraordinary {
  width: 160px;
  background: rgba(0, 183, 181, 0.2);
}

.member-badge__icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.member-badge__icon svg {
  width: 100%;
  height: 100%;
}

.member-badge__text {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 12px;
}

.member-badge--seg .member-badge__text {
  color: #003A5D;
}

.member-badge--extraordinary .member-badge__text {
  color: #243487;
}

/* =======================================
   Registration Step 1 Checkbox Styles
   ======================================= */
.registration-step-one .user-login-form .form-check {
  display: flex;
  align-items: center;
  padding-left: 0.125rem !important;
}

.registration-step-one .user-login-form .form-check-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px !important;
  height: 18px !important;
  border: 1.5px solid #003A5D;
  margin: 0 8px 0 0;
  background-color: white;
  position: relative;
  cursor: pointer;
}

.registration-step-one .user-login-form .form-check-input:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='9' viewBox='0 0 11 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.75 0.75L3.45 8.25L0.75 5.25' stroke='%23003A5D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.registration-step-one .user-login-form .form-check-label {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: underline;
  color: #003A5D;
  cursor: pointer;
}

/* =======================================
   Company Name Container
   ======================================= */
.company-name-container {
  display: none;
}

/* =======================================
   Ordinary Member Modal Styles
   ======================================= */
#ordinaryMemberModal .modal-dialog {
  max-width: none !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 100vh !important;
  padding: 20px !important;
}

#ordinaryMemberModal .modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

#ordinaryMemberModal .modal-content {
  width: 570px !important;
  height: 547px !important;
  border-radius: 8px;
  padding: 16px;
  background: #FFFFFF;
  box-shadow: 0px 4px 16px 0px #00000040;
}

#ordinaryMemberModal .modal-content > div {
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
}

#ordinaryMemberModal .modal-badge-container {
  display: flex;
  justify-content: flex-start;
}

#ordinaryMemberModal .modal-title {
  font-family: Lato;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 0 0 8px 0;
  color: #000000;
}

#ordinaryMemberModal .modal-description {
  font-family: Lato;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 0;
  color: #003A5D;
}

#ordinaryMemberModal .benefits-box {
  width: 538px;
  height: 274px;
  padding: 16px;
  background: #F5FBFC;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#ordinaryMemberModal .benefits-title {
  font-family: Lato;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 0;
  color: #000000;
}

#ordinaryMemberModal .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#ordinaryMemberModal .benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

#ordinaryMemberModal .benefit-text {
  font-family: Lato;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #003A5D;
}

#ordinaryMemberModal .benefit-checkmark {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

#ordinaryMemberModal .benefit-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

#ordinaryMemberModal .benefit-arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

#ordinaryMemberModal .modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: auto;
}

#ordinaryMemberModal .btn-secondary {
  width: 78px;
  height: 44px;
  border-radius: 4px;
  padding: 6px 14px;
  font-family: Lato;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  background-color: #E8E8E8;
  border: none;
  color: #003A5D;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ordinaryMemberModal .btn-secondary:hover {
  background-color: #D0D0D0;
}

#ordinaryMemberModal .btn-primary {
  width: 164px;
  height: 44px;
  border-radius: 4px;
  padding: 6px 14px;
  font-family: Lato;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  background-color: #003A5D;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ordinaryMemberModal .btn-primary:hover {
  background-color: #002C43;
}