section {
  display: flex;
  justify-content: center;
  margin: 20px;
}

#signup {
  width: 100%;
  border-radius: 30px;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: center;
  position: relative;
  background-color: var(--pigeon-orange);
}

body {
  background-color: #8056fc;
  overflow: visible;
  align-content: center;
  font-family: Arial, sans-serif;
}



/* Adjust field container to be relative for positioning error messages */
.field.input-field {
  /*position: relative;
margin-bottom: 20px;*/
}

/* Hide steps by default */
.form-step {
  display: none;
}

/* Show only the active step */
.form-step-active {
  display: block;
}

/* Navigation buttons */
.form-navigation {
  /*display: flex;
justify-content: flex-end;
margin-top: 20px;*/
}

/* Back button and step title styling */
.step-header {
  text-align: center;
  padding-bottom: 20px;
}

.back-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  margin-right: 10px;
  color: #000;
  left: 30px;
  position: absolute;
}

.back-button:hover {
  color: #ccc;
}

.step-header h2 {
  position: relative;
  margin: 0;
  color: #000;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select select {
  /*display: block;
width: 100%;
padding: 10px 40px 10px 15px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 30px;
background-color: #fff;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
transition: border-color 0.3s ease;*/
}

.custom-select select option {
  background-color: #ffffff;
  /* Background color */
  color: #333333;
  /* Text color */
  font-size: 16px;
  /* Font size */
  padding: 10px;
  /* Padding */
}

/* Style the option when hovered */
select option:hover {
  background-color: #f0f0f0;
}

/* Custom Arrow */
.custom-select::after {
  content: '\25BC';
  /* Unicode for down arrow */
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #333;
  font-size: 16px;
}

/* Hover and Focus States */
.custom-select select:hover,
.custom-select select:focus {
  border-color: #8056fc;
  outline: none;
}

/* Helper Text Styling */
.helper-text {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #eae726;
}

/* Loading spinner for VAT verification */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(249, 0, 0, 0.3);
  border-top-color: rgba(249, 0, 0, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.5s ease-in-out infinite;
  margin-left: 10px;
  position: absolute;
  right: 15px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Password Tooltip Styling */
.password-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  padding: 15px;
  width: 300px;
  background-color: #333;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  /* Hidden by default */
  z-index: 1000;
}

.password-tooltip::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 20px;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}

.password-criteria {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 14px;
}

.password-criteria li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.password-criteria li::before {
  content: '✖';
  /* Cross mark */
  margin-right: 8px;
  color: red;
  font-size: 16px;
}

.password-criteria li.valid::before {
  content: '✔';
  /* Check mark */
  color: green;
}

/* Transition for smooth appearance */
.password-tooltip {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .password-tooltip {
    width: 100%;
    left: 0;
  }
}

/* intl-tel-input Custom Styling Overrides */
.iti {
  width: 100%;
}

.iti .selected-flag {
  border-radius: 30px;
  height: 100%;
}

.iti .selected-flag .flag-container {
  border-radius: 30px;
}

.iti__country {
  border-radius: 30px;
}

.iti__country--active {
  border-color: #8056fc !important;
}

.iti__input {
  border: none;
  outline: none;
  background-color: transparent;
  width: 100%;
  padding-left: 10px;
  font-size: 16px;
  color: #333;
}

.iti__input:hover,
.iti__input:focus {
  background-color: transparent;
}

/* Hide the default country dropdown arrow */
.iti__country-list {
  border-radius: 10px;
}

/* Container for City and Zipcode */
.city-zipcode-container {
  display: flex;
  gap: 20px;
  /* Space between City and Zipcode fields */
  flex-wrap: wrap;
  /* Allow wrapping on smaller screens */
}

/* Individual fields within the container */
.city-field,
.zipcode-field {
  flex: 1;
  /* Equal width */
}

/* Ensure inputs take full width of their container */
.city-field input,
.zipcode-field input {
  /*width: 100%;
padding: 10px 15px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 30px;
background-color: #fff;
color: #333;
transition: border-color 0.3s ease;*/
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .city-zipcode-container {
    flex-direction: column;
  }

  .city-field,
  .zipcode-field {
    width: 100%;
  }
}

.select2 .select2-container .select2-container--default .select2-container--below {
  width: 100% !important;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  height: 50px;
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: 400;
  border-radius: 30px;
  color: #9F9F9F;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 45px;
  padding-left: 15px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #000;
  color: white;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 54px;
  position: absolute;
  top: 10px;
  right: 12px;
  width: 22px;
  display: none !important;
}

.eye-icon {
  /*position: absolute;
top: 45px;
right: 10px;
transform: translateY(-50%);
font-size: 18px;
color: #8b8b8b;
cursor: pointer;
padding: 5px;*/
}