.regForm .iti {
  width: 100%;
}

.regForm .form-group {
  margin-bottom: 15px;
}
.regForm {
  padding: 15px;
}

.regForm label {
  display: block;
  width: fit-content;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: left;
}

.regForm input[type="text"],
.regForm input[type="email"],
.regForm input[type="tel"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
.regForm .iti__flag-container {
  white-space: nowrap;
}
.regForm .iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
  font-weight: 500;
}
.regForm .iti--separate-dial-code input[type="tel"] {
  padding-left: 90px;
}
.regForm .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.regForm .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
  white-space: nowrap;
}

.regForm .btn-submit {
  background-color: #15ca1e;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}

.regForm .btn-submit:hover {
  background-color: #0b6710;
}
.regForm .btn-submit.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}
.regForm .btn-submit .spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-left: 8px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
