/* Reset default styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
.span1 {
    color: #f83600;
}

/* ---------- Submit Mockup Page ---------- */
.submit-hero {
    color: #000000;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .submit-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .submit-info {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: left;
  }
  
  .submit-info-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .submit-info h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #000000;
  }
  .submit-info a {
    color: #f83600;
    text-decoration: none;
  }
  
  .submit-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
  }
  .submit-info ul {
    margin-top: 10px;
    margin-left: 20px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .submit-info h2 {
      font-size: 1.6rem;
    }
  
    .submit-info p {
      font-size: 1rem;
    }
    .submit-hero h1 {
        font-size: 1.8rem;
      }
  }

  .submission-form-section {
    padding: 3rem 1rem;
    background: #f8f9fa;
  }
  
  .form-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
  }
  
  .form-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #222;
  }
  
  form label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #333;
    margin-top: 10px;
    gap: 0.5rem;
  }

  form input,
  form select {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    order: -1; /* Makes the input/select appear before the label text */
  }

  form label > input,
  form label > select {
    width: auto;
    margin-bottom: 0;
  }
  
  form a {
    color: #0073e6;
    text-decoration: underline;
  }
  
  .submits-btn {
    width: 100%;
    padding: 0.9rem;
    margin-top: 1rem;
    background: #000000;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .submits-btn:hover {
    background: #f83600;
  }
  
  @media (max-width: 480px) {
    .form-container {
      padding: 1.5rem;
    }
  }
/* Popup Overlay */
.popup {
  display: none; 
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.popup-content p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #000000;
}

.popup-content button {
  padding: 0.6rem 1.5rem;
  background: #000000;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.popup-content button:hover {
  background: #f83600;
}
  