*{
    margin-right: 0 !important;
}

.form-container {
  background: linear-gradient(#f4f3fd, #ebdbfc);
  padding: 30px;
  border-radius: 10px;
  width: 480px;
  max-width: 500px;
  font-family: Arial, sans-serif;
  margin: 0 !important;
  @media screen and (max-width: 1024px) {
    padding: 10px;
    margin-left: inherit;
  }
  @media screen and (max-width: 1023px) {
    max-width: 80%;
  }
  @media screen and (max-width: 768px) {
    max-width: 90%;
    padding: 14px;
    .form-container {
      padding: 30px;
    }
  }
  @media screen and (min-width: 1500px) {
    max-width: 400px;
  }
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container select {
  width: 95%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
}
input::placeholder {
  color: #aaa;
}
select:invalid {
  color: #aaa;
}
.form-container input:active,
.form-container input:focus,
.form-container input:focus-visible,
.form-container select:focus {
  border: 1px solid #f0579b;
  outline: none;
}

.form-container label {
  color: #555;
  font-family: "Albert Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 15.398px;
  /* 109.989% */
  margin-bottom: 2px;
  width: 100%;
  display: block;
}
.form-container label .txt-len {
    float: right;
    font-size: 12px;
    font-style: italic;
    color: #888;
    padding-right: 5px;
    display: inline-block;
}
.employee-options {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
  margin-top: 8px;
}

.employee-options button {
  border: 1px solid #ced4da;
  border-radius: 10px;
  background-color: #fff !important;
  min-width: 80px;
  width: 22%;
  height: 48px;
  font-size: 14px;
  cursor: pointer;
  @media screen and (max-width: 1024px) {
    min-width: 60px;
  }
}

.employee-options button:hover,
.employee-options button:focus,
.employee-options button.selected {
  cursor: pointer;
  border: 1px solid #f0579b;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #fc5d41 0%, #e551f3 100%) !important;
  color: white;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: Inter;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
}

.required {
  color: red;
}
.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23224466' d='M6.7 8.7a1 1 0 011.4 0L12 12.6l3.9-3.9a1 1 0 111.4 1.4l-4.6 4.6a1 1 0 01-1.4 0L6.7 10.1a1 1 0 010-1.4z'/%3E%3C/svg%3E")
    no-repeat right 1rem center;
  background-size: 1.5em;
  background-color: #ffffff;
  width: 100% !important;
}

.loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
.loader-enabled {
    cursor: default;
}
.loader-enabled .loader {
    display: inline-block;
}
.loader-enabled .btn-text {
    display: none;
}
.g-recaptcha {
    margin-bottom: 20px;
}
.error-recaptcha > div {
    border: 1px solid #ff0000;
}