/* =========================
   PROJECT FORM PAGE
========================= */
.sp-page {
  position: relative;
  min-height: calc(100vh - var(--bw-header-h));
  background: #f3f3f1;
  overflow: hidden;
}

.sp-shell {
  position: relative;
  min-height: 100%;
  padding: 48px 0 90px;
  z-index: 1;
}

.sp-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/forms/submit-project-bg-desktop.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.sp-container {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.sp-heading {
  text-align: center;
  margin-bottom: 60px;
}

.sp-date {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4c4c4c;
}

.sp-title {
  margin: 0;
  font-size: 64px;
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -1.8px;
  color: #000000;
}

.sp-subtitle {
  margin: 12px 0 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  color: #111111;
}

.sp-form {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.sp-section {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 30px;
  padding: 38px 36px 40px;
  backdrop-filter: blur(6px);
}

.sp-section-head {
  margin-bottom: 34px;
}

.sp-section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #17d0c4 0%, #f16361 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sp-section-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
  color: #000000;
}

.sp-section-head p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: #454545;
}

.sp-grid {
  display: grid;
  gap: 28px 24px;
}

.sp-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sp-col-full {
  grid-column: 1 / -1;
}

.sp-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

.sp-field label {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  color: #111111;
}

.sp-field input[type="text"],
.sp-field input[type="email"],
.sp-field input[type="tel"],
.sp-field textarea {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border: 1.5px solid #111111;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: #111111;
  font-size: 16px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.sp-field textarea {
  min-height: 150px;
  resize: vertical;
  padding-top: 18px;
}

.sp-field input:focus,
.sp-field textarea:focus {
  border-color: #3436a8;
  box-shadow: 0 0 0 4px rgba(52, 54, 168, 0.08);
}

.sp-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 12px;
  margin-top: 4px;
  margin-bottom: 8px;
}

.sp-chip {
  position: relative;
  display: inline-flex;
}

.sp-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sp-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1.5px solid #111111;
  background: rgba(255, 255, 255, 0.78);
  color: #111111;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  transition: all 0.25s ease;
  cursor: pointer;
}

.sp-chip input:checked + span {
  background: #3436a8;
  border-color: #3436a8;
  color: #ffffff;
}

.sp-chip-check input:checked + span {
  background: linear-gradient(90deg, #17d0c4 0%, #f16361 100%);
  border-color: transparent;
  color: #ffffff;
}

.sp-help {
  font-size: 13px;
  line-height: 1.6;
  color: #666666;
  margin-top: 2px;
}

.sp-consent-box {
  border: 1.5px solid #111111;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  padding: 24px;
}

.sp-consent-box p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.75;
  color: #2c2c2c;
}

.sp-checkline {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #111111;
  font-weight: 600;
}

.sp-checkline:last-child {
  margin-bottom: 0;
}

.sp-checkline input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sp-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.sp-submit-btn {
  min-width: 260px;
  min-height: 62px;
  border: none;
  border-radius: 999px;
  padding: 0 28px;
  background: linear-gradient(90deg, #17d0c4 0%, #f16361 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.sp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1100px) {
  .sp-title {
    font-size: 52px;
  }

  .sp-subtitle {
    font-size: 24px;
  }

  .sp-section {
    padding: 30px;
  }

  .sp-form {
    gap: 38px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 991px) {
  .sp-shell {
    padding: 26px 0 60px;
  }

  .sp-shell::before {
    background-image: url("../images/forms/submit-project-bg-mobile.png");
    background-position: center top;
    background-size: 100% auto;
  }

  .sp-container {
    width: min(100% - 32px, 100%);
  }

  .sp-heading {
    margin-bottom: 34px;
  }

  .sp-date {
    font-size: 12px;
  }

  .sp-title {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .sp-subtitle {
    font-size: 18px;
    line-height: 1.25;
  }

  .sp-form {
    gap: 26px;
  }

  .sp-section {
    border-radius: 24px;
    padding: 24px 18px 26px;
  }

  .sp-section-head {
    margin-bottom: 24px;
  }

  .sp-section-head h2 {
    font-size: 24px;
  }

  .sp-section-head p {
    font-size: 15px;
  }

  .sp-grid-2 {
    grid-template-columns: 1fr;
  }

  .sp-grid {
    gap: 22px;
  }

  .sp-field {
    gap: 10px;
    margin-bottom: 6px;
  }

  .sp-field label {
    font-size: 15px;
  }

  .sp-field input[type="text"],
  .sp-field input[type="email"],
  .sp-field input[type="tel"],
  .sp-field textarea {
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 15px;
  }

  .sp-options {
    gap: 12px 10px;
    margin-top: 4px;
    margin-bottom: 6px;
  }

  .sp-chip span {
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
    border-radius: 14px;
  }

  .sp-consent-box {
    padding: 18px;
    border-radius: 18px;
  }

  .sp-submit-btn {
    width: 100%;
    min-width: 0;
  }
}

.sp-alert {
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
}

.sp-alert ul {
  margin: 0;
  padding-left: 18px;
}

.sp-alert-error {
  background: rgba(241, 99, 97, 0.12);
  border: 1px solid rgba(241, 99, 97, 0.35);
  color: #8a1f1c;
}

/* =========================
   GET YOUR PASS PAGE
========================= */
.gp-page {
  position: relative;
  min-height: calc(100vh - var(--bw-header-h));
  background: #f3f3f1;
  overflow: hidden;
}

.gp-shell {
  position: relative;
  min-height: 100%;
  padding: 48px 0 90px;
  z-index: 1;
}

.gp-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/forms/register-bg-desktop.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.gp-container {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1100px);
  margin: 0 auto;
}

.gp-heading {
  text-align: center;
  margin-bottom: 34px;
}

.gp-date {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4c4c4c;
}

.gp-title {
  margin: 0;
  font-size: 60px;
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -1.6px;
  color: #000000;
}

.gp-subtitle {
  margin: 12px 0 0;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
  color: #111111;
}

.gp-steps {
  display: flex;
  align-items: center;
  gap: 42px;
  justify-content: center;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.gp-step {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #8a8a8a;
  font-weight: 600;
}

.gp-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d1d1d1;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.gp-step-text {
  font-size: 15px;
  line-height: 1.2;
}

.gp-step-active {
  color: #111111;
}

.gp-step-active .gp-step-num {
  background: #111111;
}

.gp-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gp-section {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 30px;
  padding: 34px 32px 36px;
  backdrop-filter: blur(6px);
}

.gp-section-title {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  color: #111111;
}

.gp-grid {
  display: grid;
  gap: 26px 22px;
}

.gp-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gp-col-full {
  grid-column: 1 / -1;
}

.gp-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gp-field label {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #111111;
}

.gp-field input[type="text"],
.gp-field input[type="email"],
.gp-field input[type="tel"],
.gp-field input[type="url"],
.gp-field input[type="file"] {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border: 1.5px solid #111111;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: #111111;
  font-size: 16px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.gp-field input[type="file"] {
  padding-top: 14px;
  padding-bottom: 14px;
}

.gp-field input:focus {
  border-color: #3436a8;
  box-shadow: 0 0 0 4px rgba(52, 54, 168, 0.08);
}

.gp-pass-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
  padding: 18px 20px;
  border: 1.5px solid #d6d6d6;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.gp-pass-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gp-pass-name {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  color: #111111;
}

.gp-pass-type {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: #d63ec6;
  text-transform: uppercase;
}

.gp-pass-qty {
  min-width: 66px;
  height: 42px;
  border-radius: 999px;
  border: 1.5px solid #cfcfcf;
  background: #f3f3f3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #111111;
}

.gp-self-box {
  margin-top: 18px;
  border: 1.5px solid #d6d6d6;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  padding: 20px;
}

.gp-self-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.gp-self-title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  color: #111111;
}

.gp-self-options {
  display: flex;
  align-items: center;
  gap: 18px;
}

.gp-inline-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
}

.gp-inline-option input {
  margin: 0;
}

.gp-self-help {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: #4d4d4d;
}

.gp-consent-box {
  border: 1.5px solid #111111;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  padding: 22px;
}

.gp-checkline {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.65;
  color: #111111;
  font-weight: 600;
}

.gp-checkline:last-child {
  margin-bottom: 0;
}

.gp-checkline input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.gp-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.gp-submit-btn {
  min-width: 280px;
  min-height: 62px;
  border: none;
  border-radius: 999px;
  padding: 0 30px;
  background: linear-gradient(90deg, #17d0c4 0%, #f16361 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.gp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1100px) {
  .gp-title {
    font-size: 48px;
  }

  .gp-subtitle {
    font-size: 21px;
  }

  .gp-section {
    padding: 28px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 991px) {
  .gp-shell {
    padding: 26px 0 60px;
  }

  .gp-shell::before {
    background-image: url("../images/forms/register-bg-mobile.png");
    background-position: center top;
    background-size: 100% auto;
  }

  .gp-container {
    width: min(100% - 32px, 100%);
  }

  .gp-heading {
    margin-bottom: 24px;
  }

  .gp-date {
    font-size: 12px;
  }

  .gp-title {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .gp-subtitle {
    font-size: 18px;
    line-height: 1.25;
  }

  .gp-steps {
    gap: 16px;
    margin-bottom: 28px;
    justify-content: flex-start;
  }

  .gp-step {
    gap: 10px;
  }

  .gp-step-num {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .gp-step-text {
    font-size: 14px;
  }

  .gp-form {
    gap: 22px;
  }

  .gp-section {
    border-radius: 24px;
    padding: 22px 18px 24px;
  }

  .gp-section-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .gp-grid-2 {
    grid-template-columns: 1fr;
  }

  .gp-grid {
    gap: 20px;
  }

  .gp-field label {
    font-size: 15px;
  }

  .gp-field input[type="text"],
  .gp-field input[type="email"],
  .gp-field input[type="tel"],
  .gp-field input[type="url"],
  .gp-field input[type="file"] {
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 15px;
  }

  .gp-pass-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
    border-radius: 20px;
  }

  .gp-pass-name {
    font-size: 24px;
  }

  .gp-pass-type {
    font-size: 16px;
  }

  .gp-self-box {
    padding: 18px;
    border-radius: 20px;
  }

  .gp-self-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .gp-self-options {
    gap: 16px;
  }

  .gp-consent-box {
    padding: 18px;
    border-radius: 18px;
  }

  .gp-submit-btn {
    width: 100%;
    min-width: 0;
  }
}

.gp-alert {
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
}

.gp-alert ul {
  margin: 0;
  padding-left: 18px;
}

.gp-alert-error {
  background: rgba(241, 99, 97, 0.12);
  border: 1px solid rgba(241, 99, 97, 0.35);
  color: #8a1f1c;
}

/* =========================
   PHOTO PREVIEW
========================= */

.gp-photo-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gp-photo-preview {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  border: 2px dashed #ccc;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.gp-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-photo-placeholder {
  font-size: 13px;
  color: #888;
  text-align: center;
}

.gp-photo-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gp-photo-help {
  font-size: 13px;
  color: #666;
}

/* MOBILE */
@media (max-width: 991px) {
  .gp-photo-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .gp-photo-preview {
    width: 100px;
    height: 100px;
  }
}

/* =========================
   REGISTER FORM — ENHANCED LONG FORM
========================= */

.gp-section-head {
  margin-bottom: 28px;
}

.gp-section-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  color: #111111;
}

.gp-help-text {
  margin: 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(52, 54, 168, 0.07);
  border: 1px solid rgba(52, 54, 168, 0.12);
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
  font-weight: 600;
}

/* Champs textarea pour le nouveau formulaire */
.gp-field textarea {
  width: 100%;
  min-height: 120px;
  padding: 16px 18px;
  border: 1.5px solid #111111;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: #111111;
  font-size: 16px;
  line-height: 1.6;
  outline: none;
  resize: vertical;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.gp-field textarea:focus {
  border-color: #3436a8;
  box-shadow: 0 0 0 4px rgba(52, 54, 168, 0.08);
}

/* Longues listes de choix */
.gp-section .sp-options {
  gap: 14px 12px;
  margin-top: 8px;
}

.gp-section .sp-chip span {
  min-height: 50px;
  padding: 0 18px;
  white-space: normal;
  text-align: center;
}

/* Pour les longues options : meilleure lisibilité */
.gp-section .sp-chip {
  max-width: 100%;
}

.gp-section .sp-chip span {
  max-width: 100%;
}

/* Sections avec beaucoup de choix */
.gp-section .gp-field {
  margin-bottom: 22px;
}

.gp-section .gp-field:last-child {
  margin-bottom: 0;
}

/* Consentements empilés */
.gp-consent-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.gp-consent-stack .gp-checkline {
  margin-bottom: 0;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

/* Labels longs */
.gp-field > label {
  max-width: 980px;
}

/* Harmonisation des blocs */
.gp-section {
  scroll-margin-top: 120px;
}

/* Amélioration du bloc photo */
.gp-photo-wrapper {
  padding: 18px;
  border: 1.5px dashed rgba(0, 0, 0, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
}

.gp-photo-input input[type="file"] {
  cursor: pointer;
}

/* Alertes */
.gp-alert {
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
}

.gp-alert ul {
  margin: 0;
  padding-left: 18px;
}

.gp-alert-error {
  background: rgba(241, 99, 97, 0.12);
  border: 1px solid rgba(241, 99, 97, 0.35);
  color: #8a1f1c;
}

/* =========================
   MOBILE REGISTER FORM
========================= */
@media (max-width: 991px) {
  .gp-section-head {
    margin-bottom: 22px;
  }

  .gp-section-head h2 {
    font-size: 24px;
  }

  .gp-help-text {
    padding: 15px 16px;
    font-size: 14px;
  }

  .gp-field textarea {
    min-height: 110px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 15px;
  }

  .gp-section .sp-options {
    gap: 10px;
  }

  .gp-section .sp-chip {
    width: auto;
  }

  .gp-section .sp-chip span {
    min-height: 46px;
    padding: 0 14px;
    font-size: 13px;
  }

  .gp-consent-stack .gp-checkline {
    padding: 14px;
    border-radius: 14px;
  }

  .gp-photo-wrapper {
    padding: 14px;
  }
}


/* =========================
   PROJECT TOGGLE FIELDS
========================= */

.gp-project-fields {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  animation: gpFadeIn 0.25s ease;
}

@keyframes gpFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   COUNTRY SELECT / TAGS
========================= */

.gp-field select,
.gp-multiselect select {
  width: 100%;
  min-height: 58px;
  padding: 15px 18px;
  border: 1.5px solid #111111;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: #111111;
  font-size: 16px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.gp-field select:focus,
.gp-multiselect select:focus {
  border-color: #3436a8;
  box-shadow: 0 0 0 4px rgba(52, 54, 168, 0.08);
}

.gp-multiselect {
  width: 100%;
  padding: 10px;
  border: 1.5px solid #111111;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
}

.gp-multiselect select {
  border: none;
  border-radius: 12px;
  background: transparent;
  padding: 12px 8px;
  min-height: 46px;
  box-shadow: none;
}

.gp-multiselect select:focus {
  box-shadow: none;
  border-color: transparent;
}

.gp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.gp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #3436a8;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.gp-tag span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 768px) {
  .gp-field select,
  .gp-multiselect select {
    min-height: 54px;
    font-size: 15px;
    border-radius: 16px;
  }

  .gp-multiselect {
    border-radius: 16px;
  }

  .gp-tag {
    font-size: 13px;
  }
}

.gp-error-field {
  border-color: #d93025 !important;
  box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.12) !important;
  background: #fffafa !important;
}

.gp-error-field:focus {
  outline: none;
  border-color: #d93025 !important;
  box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.18) !important;
}











