html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-image: url("https://staging.innexa.us/wp-content/uploads/2026/04/Innexa-BG-1-scaled.png");
    background-position: center;
    background-size: 250%;
	background-attachment: fixed;
}

.subwrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8rem 1rem 4rem;
    gap: 2rem;
    h3 {
      	font-weight: 700 !important;
		color: #E96023;
        font-size: 2.1rem;
    }
}
.submission-form {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  width: 100%;
  padding: 1.5rem;
  background-color: white;
  box-shadow: 0px 0px 25px 0px #0000000D;

	
  form {
      display: inherit;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      margin: 0;
  }
}

/* FORM INPUT */
.form-control {
  font-size: 18px;
  background: #D9D9D9;
	
  border: none;
  padding: 1rem;
  width: 100%;
  color: #1E1E1E;
  box-sizing: border-box;
  field-sizing: content;
	
}
.form-control:focus {
  background: rgb(255, 255, 255);
  color: black;
  outline: 1px solid var(--orange);
}

.contact-form-name,
.contact-form-info {
	display: flex;
	width: 100%;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
}

textarea {
  height: 100px !important;
}

::placeholder {
  font-weight: lighter;
  color: gray;
  font-family: Inter;
}

.submit-btn {
  font-size: 1.4rem !important;
  font-weight: bold;
  background: var(--orange);
  color: white;
  padding: 15px 100px 15px 100px;
  border: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.submit-btn:hover {
  color: white;
  background-color: var(--blue);
}
/* POPUP */
  .popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  .popup {
    position: fixed;
    background: var(--blue);
    outline: 1px solid white;
    padding: 1rem;
    margin: 1rem;
    max-width: 600px;
    max-height: 90vh;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  .popup h3 { 
    margin-top: 0; 
    text-align: center;
    color: white;
  }
  .popup-details {
    p {
      font-size: 20px;
      color: white;
      word-break: break-word;
      span { color: white;}
    }
  }
  .scrollable-message {
    overflow-y: scroll;
    display: flex;
    color: white;
    padding: 0.5rem;
    outline: 1px solid white;
    height: 200px;
  }
  .popup-buttons { 
    margin-top: 15px; 
    text-align: right; 
  }
  .popup-buttons button {
    margin-left: 10px;
    padding: 8px 14px;
    border: none;
    cursor: pointer;
  }
  #cancel-btn { background: white; color: var(--blue); font-size: 20px;}
  #confirm-btn { background: white; color: var(--blue); font-size: 20px;}

  #confirm-btn:disabled,
  #cancel-btn:disabled {
    color: white;
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
  }
  #popup-status {
    text-align: center;
    p { 
      font-size: 20px; 
      font-weight: 400; 
      color: white;
    }
  }
  .spinner {
    border: 10px solid transparent;
    border-top: 10px solid white;
    border-radius: 50%;
    width: 30px; height: 30px;
    animation: spin 1s linear infinite;
    margin: 10px auto;
  }
@keyframes spin { 100% { transform: rotate(360deg); } }

@media (max-width: 1024px) {
	.submit-btn { width: 100%; }
}

@media (max-width: 940px) {
  .subwrapper {
    gap: 1rem;
    padding: 4rem 1rem 2rem;
 }
  .form-control {
    font-size: 16px;
    padding: 0.5rem;
    height: 50px;
  }
  .popup-details {
    p {
      font-size: 18px;
    }
  }
  .spinner {
    width: 15px; height: 15px;
  }
  #popup-status {
    p { font-size: 18px; font-weight: 400; }
  }
  #cancel-btn { font-size: 18px;}
  #confirm-btn { font-size: 18px;}
}

@media (max-width: 546px) {
  .popup-details {
    p {
      font-size: 16px;
    }
  }
  #popup-status {
    p { font-size: 16px; font-weight: 400; }
  }
  #cancel-btn { font-size: 16px;}
  #confirm-btn { font-size: 16px;}
}