.custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* gap-2 */
  white-space: nowrap;
  transition: all 0.2s ease;
  pointer-events: auto;
  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* shadow-xs */
  height: 3.5rem;
  background-color: #4cddb6;
  color: rgb(30 23 40);
  font-weight: 700;
  padding: 0.75rem 1.5rem; /* py-3 px-6 */
  border-radius: 9999px; /* rounded-full */
  font-size: 1rem;
  line-height: 1.5rem;
  width: 100%;
  margin-bottom: 1.5rem; /* mb-6 */
  max-width: 515px;
  cursor: pointer;
  border: none;
}

/* Medium screen */
@media (min-width: 768px) {
  .custom-button {
    padding: 1rem 2rem; /* sm:py-4 sm:px-8 */
    font-size: 1.25rem; /* md:text-xl */
  }
}

/* Hover */
.custom-button:hover {
  background-color: #90f5cb;
}

/* Disabled */
.custom-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* SVG inside the button */
.custom-button svg {
  pointer-events: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
}

/* Skip overriding size if svg already has a size class */
.custom-button svg[class*='size-'] {
  height: auto;
  width: auto;
}

/* Focus ring */
.custom-button:focus-visible {
  border-color: var(--ring, #4cddb6);
  box-shadow: 0 0 0 3px rgba(76, 221, 182, 0.5); /* ring-[3px] ring-ring/50 */
}

/* Aria-invalid (optional, used in JS usually) */
.custom-button[aria-invalid='true'] {
  border-color: #ef4444; /* destructive */
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

/* Dark mode aria-invalid (optional) */
@media (prefers-color-scheme: dark) {
  .custom-button[aria-invalid='true'] {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.4);
  }
}

/* Padding if button has SVG */
.custom-button:has(svg) {
  padding-left: 1rem;
  padding-right: 1rem;
}
.custom-input {
  width: 100%;
  padding: 0.5rem 0.75rem; /* py-2 px-3 */
  max-height: 48px;
  border-radius: 0.5rem; /* rounded-lg */
  background-color: rgba(255, 255, 255, 0.1); /* #FFFFFF1A */
  border: 2px solid rgba(255, 255, 255, 0.4); /* #FFFFFF66 */
  color: #ffffff;
  font-size: 0.875rem; /* text-sm */
  outline: none;
  margin-top: 0.25rem;
}

.custom-input::placeholder {
  color: rgba(255, 255, 255, 0.8); /* #FFFFFFCC */
}

.custom-input:focus {
  border-color: #4cddb6;
  background-color: rgba(76, 221, 182, 0.1); /* #4CDDB61A */
  outline: none;
}

/* Medium screen (sm) */
@media (min-width: 640px) {
  .custom-input {
    padding: 1rem; /* sm:px-4 sm:py-4 */
    font-size: 1rem; /* sm:text-base */
  }
}
.custom-textarea {
  max-height: 92px;
}
.mobile-menu {
  display: none !important;
}
.mobile-menu.opened {
  display: block !important;
}
.form-popup, .form-popup-2, .popup-thank-you{
  display: none !important;
}
.form-popup.opened, .form-popup-2.opened, .popup-thank-you.opened {
  display: flex !important;
}
.close-menu {
  display: none;
}
.text-typography {
  color: rgb(30 23 40);
}
.practical-bg {
  background-image: url('./assets/images/practical-guide-bg.png');
}
.open-menu{
  display: none;
  cursor: pointer;
}
@media (max-width: 770px) {
  .open-menu{
    display: block;
  }
  .contact-absolute{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}