body {
  background-color: #f0f6fc;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

.apply-container {
  max-width: 700px;
  background: white;
  margin: 60px auto;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

h1 {
  color: #003366;
  margin-bottom: 5px;
}

.location {
  color: #555;
  margin-bottom: 30px;
}

.application-form .form-group {
  margin-bottom: 20px;
}

.application-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.application-form label span {
  color: red;
}

.application-form input,
.application-form textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f9f9f9;
}

.application-form textarea {
  resize: vertical;
}

.submit-btn {
  background-color: #0070c0;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #005fa3;
}
.g-recaptcha {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 600px) {
  .apply-container {
    padding: 20px;
  }

  .submit-btn {
    width: 100%;
  }
}
