/* ====== БЛОК С ФОРМОЙ ====== */
.form-section {
  padding: 120px 20px;
  margin-top: -150px;
  background: transparent;
  position: relative;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  z-index: 2;
}

/* Убираем все обводки у всех изображений в блоке формы */
.form-section img,
.form-container img,
.form-bg-wrapper img {
  border: 0 !important;
  border-width: 0 !important;
  border-style: none !important;
  border-color: transparent !important;
  outline: 0 !important;
  outline-width: 0 !important;
  outline-style: none !important;
  outline-color: transparent !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -moz-outline: none !important;
  -webkit-focus-ring-color: transparent !important;
}

.form-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.form-bg-wrapper {
  position: relative;
  background: linear-gradient(135deg, #1D763B 0%, #2D890D 50%, #3FA052 100%);
  border: 0 !important;
  border-width: 0 !important;
  border-style: none !important;
  border-color: rgba(0, 0, 0, 0) !important;
  border-top: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  border-radius: 24px;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 500px;
  overflow: visible; /* Позволяем кнопке выходить за рамки */
  backdrop-filter: none;
  box-shadow: none !important;
  outline: 0 !important;
  outline-width: 0 !important;
  outline-style: none !important;
  outline-color: rgba(0, 0, 0, 0) !important;
  z-index: 2;
}

/* Мобильный фон скрыт по умолчанию */
.form-bg-mobile {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  border-radius: 24px;
}

.form-bg-wrapper::before,
.form-bg-wrapper::after {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-color: rgba(0, 0, 0, 0) !important;
}

.happy-man {
  position: absolute;
  left: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  max-height: 600px;
  z-index: 1;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 0 !important;
  border-width: 0 !important;
  border-style: none !important;
  border-color: rgba(0, 0, 0, 0) !important;
  border-top: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  outline: 0 !important;
  outline-width: 0 !important;
  outline-style: none !important;
  outline-color: rgba(0, 0, 0, 0) !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -moz-outline: none !important;
  -webkit-focus-ring-color: transparent !important;
  user-select: none;
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
  overflow: hidden;
}

.happy-man::before,
.happy-man::after {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  display: none !important;
  border-color: rgba(0, 0, 0, 0) !important;
}

.happy-man img,
img.happy-man,
.form-bg-wrapper img.happy-man,
.form-bg-wrapper .happy-man {
  border: 0 !important;
  border-width: 0 !important;
  border-style: none !important;
  outline: 0 !important;
  outline-width: 0 !important;
  outline-style: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -moz-outline: none !important;
  -webkit-focus-ring-color: transparent !important;
}

.happy-man.visible {
  opacity: 1;
  transform: translateX(0);
}

.form-content {
  position: relative;
  z-index: 2;
  margin-right: 100px; /* Чуть левее */
  margin-left: auto;
  flex: 0 0 auto;
  max-width: 500px; /* Уменьшаем максимальную ширину для более компактного вида */
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.form-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 72px);
  color: #FFFFFF; /* Белый цвет текста на ПК */
  margin: 0 0 40px 0;
  text-align: center; /* Текст по центру относительно блоков ввода */
  line-height: 1.2;
}

/* Мобильная адаптация для form-title */
@media (max-width: 992px) {
  .form-title {
    margin: 0 0 30px 0;
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center; /* Центрируем элементы, включая кнопку */
  width: 100%;
}

/* На мобильных центрируем */
@media (max-width: 992px) {
  .form {
    align-items: center;
  }
}

.form-input {
  width: 100%;
  max-width: 100%; /* Поля ввода на всю ширину контейнера */
  padding: 20px 28px;
  border: none !important;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #1D763B;
  outline: none;
  transition: all 0.3s ease;
  direction: rtl;
  margin-right: 0;
  margin-left: 0; /* Убираем auto для центрирования внутри формы */
}

/* На мобильных центрируем */
@media (max-width: 992px) {
  .form-input {
    margin-right: auto;
    margin-left: auto;
  }
}

/* Мобильная адаптация для form-input */
@media (max-width: 992px) {
  .form-input {
    margin-right: 0;
    margin-left: 0;
  }
}

.form-input::placeholder {
  color: #1D763B;
  opacity: 0.6;
}

.form-input:focus {
  border: none !important;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.form-submit-btn {
  padding: 20px 30px;
  background: #1D763B;
  color: #ffffff;
  border: none;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: visible;
  margin: 0 auto; /* Центрируем кнопку относительно полей ввода */
  width: auto;
  max-width: 280px;
  display: block;
  transform: translateZ(0);
  z-index: 10;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  align-self: center; /* Дополнительное центрирование */
}

.form-submit-btn:hover {
  transform: translateY(2px) scale(0.98);
  box-shadow: 
    0 12px 32px rgba(29, 118, 59, 0.5),
    0 6px 16px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(0, 0, 0, 0.3);
  background: #0f4a26;
}

.form-submit-btn:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 16px rgba(29, 118, 59, 0.3);
}

/* Анимация при отправке */
.form-submit-btn.loading {
  pointer-events: none;
  opacity: 0.7;
  padding-right: 40px; /* Место для спиннера */
}

.form-submit-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px; /* Справа от текста */
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ====== МОДАЛЬНОЕ ОКНО ОШИБКИ ВАЛИДАЦИИ ФОРМЫ ====== */
.form-error-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  /* Убираем любые фильтры, которые могут затемнять */
  filter: none !important;
  -webkit-filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.form-error-modal.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  filter: none !important;
  -webkit-filter: none !important;
}

.form-error-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent !important; /* Полностью прозрачный фон */
  backdrop-filter: none !important; /* Убираем размытие */
  -webkit-backdrop-filter: none !important;
  animation: none; /* Убираем анимацию */
  pointer-events: none; /* Не блокируем клики */
}

.form-error-modal-content {
  position: relative;
  z-index: 1;
  max-width: 400px;
  width: 85%;
  min-width: 280px;
  animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 1 !important; /* Полная непрозрачность контента */
  filter: none !important; /* Убираем любые фильтры */
  -webkit-filter: none !important;
  transform: none !important; /* Убираем трансформации, которые могут влиять на яркость */
}

/* Мобильная адаптация для модального окна ошибки */
@media (max-width: 768px) {
  .form-error-modal-content {
    width: 90%;
    max-width: 90%;
    min-width: 260px;
    opacity: 1 !important; /* Полная непрозрачность на мобильных */
  }

  .form-error-modal-inner {
    padding: 35px 25px;
    background: #E8F5E9 !important; /* Непрозрачный фон */
    background-color: #E8F5E9 !important;
    opacity: 1 !important; /* Полная непрозрачность */
    filter: none !important;
    -webkit-filter: none !important;
    brightness: 1 !important;
  }
  
  .form-error-modal-overlay {
    backdrop-filter: none !important; /* Убираем размытие на мобильных */
    -webkit-backdrop-filter: none !important;
    background: transparent !important; /* Полностью прозрачный фон */
    filter: none !important;
    -webkit-filter: none !important;
    pointer-events: none !important; /* Не блокируем клики */
  }
  
  .form-error-modal-content {
    filter: none !important;
    -webkit-filter: none !important;
  }
}

@media (max-width: 480px) {
  .form-error-modal-content {
    width: 90%;
    max-width: 90%;
    min-width: 200px;
    opacity: 1 !important; /* Полная непрозрачность на маленьких экранах */
  }

  .form-error-modal-inner {
    padding: 20px 15px;
    border-radius: 14px;
    background: #E8F5E9 !important; /* Непрозрачный фон */
    background-color: #E8F5E9 !important;
    opacity: 1 !important; /* Полная непрозрачность */
    filter: none !important;
    -webkit-filter: none !important;
    brightness: 1 !important;
    -webkit-brightness: 1 !important;
  }
  
  .form-error-modal-overlay {
    backdrop-filter: none !important; /* Убираем размытие */
    -webkit-backdrop-filter: none !important;
    background: transparent !important; /* Полностью прозрачный фон */
    filter: none !important;
    -webkit-filter: none !important;
    pointer-events: none !important; /* Не блокируем клики */
  }
  
  .form-error-modal-content {
    filter: none !important;
    -webkit-filter: none !important;
  }
  
  .form-error-modal {
    filter: none !important;
    -webkit-filter: none !important;
  }

  .form-error-icon {
    font-size: clamp(60px, 15vw, 80px) !important;
    margin: 0 auto 15px;
    opacity: 1 !important; /* Полная непрозрачность иконки */
  }

  .form-error-title {
    font-size: clamp(22px, 4vw, 28px) !important;
    margin: 0 0 10px 0;
    opacity: 1 !important; /* Полная непрозрачность заголовка */
    color: #333 !important; /* Явно задаем цвет */
  }

  .form-error-message {
    font-size: clamp(14px, 2.5vw, 18px) !important;
    margin: 0 0 20px 0;
    opacity: 1 !important; /* Полная непрозрачность сообщения */
    color: #666 !important; /* Явно задаем цвет */
  }

  .form-error-btn {
    padding: 12px 28px;
    font-size: 15px;
    opacity: 1 !important; /* Полная непрозрачность кнопки */
  }
}

.form-error-modal-inner {
  background: #E8F5E9 !important; /* Светло-зеленый фон, непрозрачный */
  background-color: #E8F5E9 !important;
  -webkit-background-color: #E8F5E9 !important;
  opacity: 1 !important; /* Полная непрозрачность */
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
  /* Убираем любые фильтры, которые могут затемнять */
  filter: none !important;
  -webkit-filter: none !important;
  brightness: 1 !important;
  -webkit-brightness: 1 !important;
  /* Убеждаемся, что фон яркий и видимый */
  color: #333 !important; /* Явно задаем цвет текста */
}

.form-error-icon {
  width: auto;
  height: auto;
  border-radius: 0 !important;
  background: transparent !important;
  color: #FF6B6B;
  font-size: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-weight: 900;
  box-shadow: none !important;
  animation: iconBounce 0.6s ease 0.2s both;
  line-height: 1;
}

.form-error-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  color: #333;
  margin: 0 0 15px 0;
  line-height: 1.2;
  animation: fadeInUp 0.5s ease 0.3s both;
}

.form-error-message {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  color: #666;
  margin: 0 0 30px 0;
  line-height: 1.6;
  animation: fadeInUp 0.5s ease 0.4s both;
}

.form-error-btn {
  padding: 16px 40px;
  background: linear-gradient(135deg, #1D763B 0%, #2D890D 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(29, 118, 59, 0.3);
  animation: fadeInUp 0.5s ease 0.5s both;
}

.form-error-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 118, 59, 0.4);
}

.form-error-btn:active {
  transform: translateY(0);
}

/* Анимации для модального окна */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-30px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes iconBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Адаптив */
@media (max-width: 1200px) {
  .form-bg-wrapper {
    padding: 50px 30px;
    gap: 40px;
  }
  
  .form-content {
    margin-left: auto;
    margin-right: 80px; /* Чуть левее на средних экранах */
    max-width: 500px; /* Уменьшаем максимальную ширину */
  }
  
  .happy-man {
    max-height: 500px;
  }
}

@media (max-width: 992px) {
  .form-bg-wrapper {
    flex-direction: column;
    padding: 40px 30px;
    text-align: center;
  }
  
  .happy-man {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
  }
  
  .form-content {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  
  .form-title {
    text-align: right;
  }
}

@media (max-width: 768px) {
  .form-section {
    padding: 40px 15px 150px 15px; /* Уменьшаем верхний отступ, чтобы приблизить к 4 блоку */
    margin-top: -80px !important; /* Поднимаем блок выше */
    overflow: visible !important; /* Позволяем кнопке выходить за рамки */
    z-index: 100 !important; /* Выше следующего блока */
    position: relative;
  }

  .form-container {
    overflow: visible !important; /* Позволяем кнопке выходить за рамки */
    position: relative;
    z-index: 100;
  }
  
  .form-bg-wrapper {
    padding: 30px 20px 110px 20px; /* Увеличиваем отступ снизу для кнопки */
    flex-direction: column;
    gap: 30px;
    min-height: auto;
    background: transparent !important; /* Убираем градиент на мобильных */
    position: relative;
    overflow: visible !important; /* Позволяем кнопке выходить за рамки */
  }

  /* Показываем мобильный фон */
  .form-bg-mobile {
    display: block !important;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    border-radius: 24px;
    z-index: 1 !important; /* Ниже кнопки */
    pointer-events: none !important; /* Не блокирует клики */
  }
  
  .form-title {
    font-size: clamp(32px, 8vw, 48px);
    margin: 0 0 30px 0;
    margin-top: 90px; /* Опускаем текст еще ниже */
    text-align: center;
    position: relative;
    z-index: 2;
    color: #FFFFFF !important; /* Белый цвет текста */
  }
  
  .form {
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 12px !important; /* Уменьшаем расстояние между полями ввода */
    pointer-events: none; /* Не блокирует клики на кнопку */
  }

  .form > * {
    pointer-events: auto; /* Восстанавливаем клики для полей ввода */
  }

  .form-submit-btn {
    pointer-events: auto !important; /* Кнопка всегда кликабельна */
  }
  
  .form-input {
    padding: 14px 18px;
    font-size: 15px;
    max-width: 85%; /* Уменьшаем ширину полей ввода */
    margin-right: 0;
    margin-left: 0;
    position: relative;
    z-index: 2;
  }
  
  .form-submit-btn {
    padding: 16px 24px;
    font-size: 18px;
    width: auto;
    max-width: 250px;
    position: absolute !important;
    left: 50%;
    bottom: -90px; /* Кнопка еще ниже */
    transform: translateX(-50%);
    z-index: 10000 !important; /* Очень высокий z-index */
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    will-change: transform;
    /* Убеждаемся, что вся кнопка кликабельна */
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Расширяем кликабельную область псевдоэлементом */
  .form-submit-btn::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
    pointer-events: auto;
  }

  .form-submit-btn:hover {
    transform: translateX(-50%) translateY(2px) scale(0.98) !important;
  }

  .form-submit-btn:active,
  .form-submit-btn.touching {
    transform: translateX(-50%) translateY(-2px) scale(0.98) !important;
    box-shadow: 0 6px 16px rgba(29, 118, 59, 0.3) !important;
    background: #0f4a26 !important;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease !important;
  }
  
  .happy-man {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
  }

  .form-content {
    margin-right: 0;
    margin-left: 0;
    max-width: 100%;
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 480px) {
  .form-section {
    padding: 30px 10px 140px 10px; /* Уменьшаем верхний отступ, чтобы приблизить к 4 блоку */
    margin-top: -70px !important; /* Поднимаем блок выше */
    overflow: visible !important; /* Позволяем кнопке выходить за рамки */
    z-index: 100 !important; /* Выше следующего блока */
    position: relative;
  }

  .form-container {
    overflow: visible !important; /* Позволяем кнопке выходить за рамки */
    position: relative;
    z-index: 100;
  }
  
  .form-bg-wrapper {
    padding: 25px 15px 110px 15px; /* Увеличиваем отступ снизу для кнопки */
    border-radius: 16px;
    background: transparent !important; /* Убираем градиент на мобильных */
    position: relative;
    overflow: visible !important; /* Позволяем кнопке выходить за рамки */
  }

  /* Показываем мобильный фон */
  .form-bg-mobile {
    display: block !important;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    border-radius: 16px;
    z-index: 1 !important; /* Ниже кнопки */
    pointer-events: none !important; /* Не блокирует клики */
  }
  
  .form-title {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 25px;
    margin-top: 75px; /* Опускаем текст еще ниже */
    position: relative;
    z-index: 2;
    color: #FFFFFF !important; /* Белый цвет текста */
  }

  .form {
    gap: 10px !important; /* Уменьшаем расстояние между полями ввода */
    pointer-events: none; /* Не блокирует клики на кнопку */
  }

  .form > * {
    pointer-events: auto; /* Восстанавливаем клики для полей ввода */
  }

  .form-submit-btn {
    pointer-events: auto !important; /* Кнопка всегда кликабельна */
  }
  
  .form-input {
    padding: 12px 16px;
    font-size: 14px;
    max-width: 80%; /* Уменьшаем ширину полей ввода */
    position: relative;
    z-index: 2;
  }
  
  .form-submit-btn {
    padding: 14px 20px;
    font-size: 16px;
    max-width: 220px;
    position: absolute !important;
    left: 50%;
    bottom: -85px; /* Кнопка еще ниже */
    transform: translateX(-50%);
    z-index: 10000 !important; /* Очень высокий z-index */
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    will-change: transform;
    /* Убеждаемся, что вся кнопка кликабельна */
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .form-submit-btn.loading {
    padding-right: 35px !important; /* Место для спиннера */
  }
  
  .form-submit-btn.loading::after {
    right: 10px !important; /* Справа от текста */
    left: auto !important;
    margin: 0 !important;
    width: 14px !important;
    height: 14px !important;
    margin-top: -7px !important;
    border-width: 2px !important;
  }

  /* Расширяем кликабельную область псевдоэлементом */
  .form-submit-btn::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
    pointer-events: auto;
  }

  .form-submit-btn:active,
  .form-submit-btn.touching {
    transform: translateX(-50%) translateY(-2px) scale(0.98) !important;
    box-shadow: 0 6px 16px rgba(29, 118, 59, 0.3) !important;
    background: #0f4a26 !important;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease !important;
  }

  .form-submit-btn:hover {
    transform: translateX(-50%) translateY(2px) scale(0.98) !important;
  }
  
  .happy-man {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
  }

  .form-content {
    position: relative;
    z-index: 2;
  }
}

