/* Label styling */
.form-group label {
  display: block;
  text-align: left;         /* Aligns text to the left */
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #444;              /* Slightly softer than black for better UI */
}

/* Trigger button styling */
#openPopupBtn {
  background-color: #ec6502;        /* Your brand orange */
  color: #fff;
  border: none;
  padding: 20px 60px;
  font-size: 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(236, 101, 2, 0.4);
}
#openPopupBtn:hover,
#openPopupBtn:focus {
  background-color: #bf4a01;
  outline: none;
}    

.mit-popup-wrapper {
      font-family: 'Inter', sans-serif;
    }

    .mit-popup-wrapper .popup-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 9999;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .mit-popup-wrapper .popup-content {
      position: relative;
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 480px;
      background-color: #fff;
      background-clip: padding-box;
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 0.3rem;
      padding: 25px 30px;
      box-shadow: 0 0 20px rgba(0,0,0,0.15);
      pointer-events: auto;
      outline: 0;
    }

    .mit-popup-wrapper .popup-content h2 {
      text-align: center;
      margin-bottom: 20px;
      font-weight: 700;
      color: #333;
    }

    .mit-popup-wrapper .form-group {
      margin-bottom: 20px;
      display: flex;
      flex-direction: column;
    }

    .mit-popup-wrapper label {
      font-size: 16px;
      color: #444444;
      font-weight: 400;
      margin-bottom: 12px;
    }

    .mit-popup-wrapper .col-12 {
      flex: 0 0 auto;
      width: 100%;
    }

    .mit-popup-wrapper form#contactForm input,
    .mit-popup-wrapper form#contactForm textarea {
      width: 100%;
      padding: 10px 24px;
      border-radius: 4px;
      border: 0;
      background: #EFEFEF;
      box-sizing: border-box;
      font-size: 1rem;
      resize: vertical;
      color: #333;
    }

    .mit-popup-wrapper form#contactForm input:focus,
    .mit-popup-wrapper form#contactForm textarea:focus {
      outline: none;
      box-shadow: none;
      border: 0;
    }

    .mit-popup-wrapper form#contactForm button {
      padding: 12px;
      background: #ec6502;
      color: white;
      border: none;
      border-radius: 5px;
      width: 100%;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .mit-popup-wrapper form#contactForm button:hover {
      background: #d35400;
    }

    .mit-popup-wrapper .close-btn {
      position: absolute;
      top: 12px;
      right: 18px;
      font-size: 24px;
      cursor: pointer;
      color: #333;
      background: none;
      border: none;
    }

    .mit-popup-wrapper #formStatus {
      text-align: center;
      margin-top: 10px;
      font-weight: 700;
    }

    @media (max-width: 600px) {
      .mit-popup-wrapper .popup-content {
        max-width: 95%;
      }
    }