#menu-posts-candidate{
	display: none !important;
}
#menu-posts-job_listing{
	display: none !important;
}

/* Main Form Container */
.gsbsn-form-container {
  max-width: 1800px;
	padding: 30px;
  margin: 0 auto;
  border-radius: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  font-family: Arial, sans-serif;
  color: #333;
  border: 1px solid rgba(0,158,73,0.1);
	background-color: white;
}

/* Form Header Styles */
.gsbsn-form-container h2 {
  color: #009E49;
  margin-bottom: 0.5rem;
  text-align: center;
}

.form-tagline {
  color: #666;
  text-align: center;
  margin-bottom: 2rem;
}

/* Form Sections */
.form-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 10px;
  border-left: 4px solid #FCD116;
}

.form-section h3 {
  color: #333;
  margin-top: 0;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f0f0f0;
}

/* Row and Column Layout */
.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-col {
  flex: 1;
}

/* Form Fields */
.gsbsn-form-container label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #444;
}

.gsbsn-form-container input[type="text"],
.gsbsn-form-container input[type="email"],
.gsbsn-form-container input[type="tel"],
.gsbsn-form-container input[type="date"],
.gsbsn-form-container input[type="number"],
.gsbsn-form-container select,
.gsbsn-form-container textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 1.2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.gsbsn-form-container input:focus,
.gsbsn-form-container select:focus,
.gsbsn-form-container textarea:focus {
  border-color: #009E49;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,158,73,0.1);
}

.gsbsn-form-container textarea {
  min-height: 100px;
  resize: vertical;
}

/* Select styling */
.gsbsn-form-container select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

/* File Upload Styling */
.gsbsn-form-container input[type="file"] {
  padding: 1rem;
  background-color: #f9f9f9;
  border: 2px dashed #ddd;
}

/* Checkbox Styling */
.form-checkbox {
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: #f9f7e8;
  border-radius: 8px;
}

.form-checkbox .wpcf7-list-item {
  margin: 0;
}

.form-checkbox input[type="checkbox"] {
  margin-right: 10px;
}

/* Submit Button */
.gsbsn-form-container input[type="submit"] {
  background: linear-gradient(135deg, #009E49, #007b38);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gsbsn-form-container input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.gsbsn-form-container input[type="submit"]:active {
  transform: translateY(0);
}

/* Footer Text */
.form-footer {
  text-align: center;
  color: #666;
  margin-top: 1.5rem;
}

/* Links */
.gsbsn-form-container a {
  color: #CE1126;
  text-decoration: none;
  transition: color 0.2s;
}

.gsbsn-form-container a:hover {
  color: #FCD116;
  text-decoration: underline;
}

/* Validation Styling */
.gsbsn-form-container .wpcf7-not-valid-tip {
  color: #CE1126;
  margin-top: -1rem;
  margin-bottom: 1rem;
}

.gsbsn-form-container .wpcf7-response-output {
  background-color: #f9f7e8;
  border: 1px solid #FCD116 !important;
  padding: 1rem !important;
  border-radius: 8px;
  margin: 2rem 0 0 0 !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .gsbsn-form-container {
    padding: 1.5rem;
  }
  
  .form-section {
    padding: 1rem;
  }
}

/* Decorative Elements */
.form-section:nth-child(2) {
  border-left-color: #009E49;
}

.form-section:nth-child(3) {
  border-left-color: #CE1126;
}

/* Placeholder styling */
.gsbsn-form-container ::placeholder {
  color: #aaa;
  opacity: 1;
}

/* Multi-step form styling */
.form-step-container {
  display: none;
}

.form-step-container.active {
  display: block;
}

/* Progress indicator */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 8px;
  z-index: 1;
  border: 2px solid #ddd;
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background-color: #438E44;
  color: white;
  border-color: #438E44;
}

.progress-step.completed .step-number {
  background-color: #FCD116;
  color: #333;
  border-color: #FCD116;
}

.step-label {
  color: #666;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
  color: #333;
  font-weight: bold;
}

.progress-line {
  flex: 1;
  height: 4px;
  background-color: #f0f0f0;
  position: relative;
  z-index: 0;
}

.progress-line-inner {
  width: 0%;
  height: 100%;
  background-color: #009E49;
  transition: width 0.3s ease;
}

/* Navigation buttons */
.form-navigation {
  margin-top: 2rem;
	gap: 10px;
}

.next-step-btn {
  background: #438E44;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  float: right;
}

.prev-step-btn {
  color: #00a0d2;
	text-decoration: underline;
	font-size: 14px;
	background-color: #00000000 !important;
	border: 0px;
  cursor: pointer;
  margin-right: auto;
}

.next-step-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Add animation */
.form-step-container {
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(20px);
}

.form-step-container.active {
  opacity: 1;
  transform: translateX(0);
}

form.wpcf7-form
{
	border: 0px;
	padding: 0px;
}
