.page_main {
    padding: 50px 0;
}

.page_main-header {
    font-size: 2rem;
    font-weight: 700;
}

.btn--gradient {
    background: linear-gradient(45deg, #007bff, #6610f2);
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
}

.btn--gradient:hover {
    opacity: 0.9;
}
/* General Section Styling */
.career {
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Container */
.career .container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Form Wrapper */
.career-form-wrapper {
  background: #eeecf6;
  padding: 35px 40px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}
.career-form-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Heading */
.test-form h2 {
  text-align: center;
  color: #2a2a72;
  margin-bottom: 25px;
  font-size: 35px;
  font-weight: 900;
}

/* Sections */
.section {
  margin-bottom: 25px;
}
.section h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #444;
  font-weight: 900;
  border-left: 4px solid #2a2a72;
  padding-left: 10px;
}

/* Labels and Inputs */
.section label {
  display: block;
  margin: 8px 0;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  transition: color 0.2s ease;
}
.section label:hover {
  color: #2a2a72;
}
.section input[type="checkbox"],
.section input[type="radio"] {
  margin-right: 25px;
  accent-color: #2a2a72; /* Modern checkbox/radio color */
}

/* Select Dropdown */
.section select {
  width: 300px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #bbb;
  font-size: 16px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.section select:focus {
  border-color: #2a2a72;
  box-shadow: 0 0 5px rgba(42, 42, 114, 0.3);
}

/* Submit Button */
/* Submit Button */
.test-form button {
  display: block;              /* Make it a block element */
  width: 30%;
  margin: 20px auto;           /* Centers the button horizontally */
  padding: 14px;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, #0056b3, #6a11cb);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.test-form button:hover {
  background: linear-gradient(90deg, #6a11cb, #0056b3);
  transform: translateY(-2px);
}

.test-form button:active {
  transform: scale(0.97);
}

/* Responsive */
@media (max-width: 600px) {
  .career-form-wrapper {
    padding: 25px 20px;
  }
  .test-form h2 {
    font-size: 22px;
  }
  .section h3 {
    font-size: 18px;
  }
}
/* Checkbox Grid Layout */
.section-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px 20px; /* row gap, column gap */
  margin-top: 10px;
}

.section-checkboxes label {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #333;
  cursor: pointer;
}

.section-checkboxes input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #2a2a72;
}
