.custom_registration {
  max-width: 650px;
}
.custom_registration .form_wrapper {
  margin-top: 45px;
}

.custom_registration .form_wrapper .field__group {
  gap: 50px;
}

.custom_registration .company_details_title {
  margin-block: 20px;
}
.custom_registration .back_to_login_button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  margin-top: 35px;
}

.custom_registration .back_to_login_button a {
  text-decoration: none;
  font-size: 13px;
}

.custom_registration .back_to_login_button a:hover {
  text-decoration: underline;
}
.custom_registration .submit_button {
  margin-top: 35px;
  padding-inline: 75px;
}

.vat-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none; /* Hidden by default */
}

.vat-modal {
  background: white;
  padding: 30px;
  text-align: center;
  width: 400px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.vat-modal-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.vat-modal-buttons button {
  padding: 5px 50px;
}

.vat-modal-buttons #vat-modal-no {
  background-color: #676767;
  color: white;
  box-shadow: 0 0 0 var(--btn-border-thickness)
      rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 var(--btn-border-thickness) #676767, var(--alpha-button-background) !important;
}
.validation-message__info {
  display: none;
  font-size: 13px;
  margin-bottom: 10px;
  gap: 5px;
}
.vat-preCheck-info {
  gap: 5px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.vat-preCheck-info svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.vat-preCheck-info span {
  font-size: 11px;
}
.vat-postcode-info {
  gap: 5px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #ff2020;
}

.vat-postcode-info svg {
  width: 17px;
  height: 17px;
}

.vat-postcode-info span {
  font-size: 13px;
}
.notice-container {
  background-color: #f4f4f4;
  padding: 15px;
  text-align: center;
  border-radius: 0px;
  margin: 30px auto;
}

.notice-container p {
  margin: 0;
  font-size: 16px;
  color: #2c3e50;
}

.notice-container a {
  color: #2c3e50;
  text-decoration: underline;
  font-weight: bold;
}

/* Currency Dropdown */
.currency-select-container {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.currency-selected_wrapper {
  display: flex;
  align-items: center;
  border: none;
  border-bottom: 1.5px #212d56 solid;
  padding: 8px 0px;
  width: 100%;
  justify-content: space-between;
}

.currency-selected {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.currency-dropdown {
  display: none;
  position: absolute;
  width: 100%;
  background-color: white;
  z-index: 10;
  box-shadow: 0px 4px 7.8px -1px #00000021;
}

.currency-option {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
}

.currency-option:hover {
  background-color: #f4f4f4;
}

.currency-icon {
  width: 16px;
  margin-right: 10px;
}

.success-page__wrapper {
  padding-block: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  animation: fadeInSlideUp 0.6s ease-out forwards;
}
.success-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.phone_field__container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone_code_select__arrow {
  position: absolute;
  bottom: 5px;
  right: 0;
}
