/* Form Section */
.apply-section {
  padding: 60px 10%;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  font-family: 'Roboto', sans-serif;
}
 
.apply-container {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease;
}
 
.apply-container.animate {
  transform: translateY(0);
  opacity: 1;
}
 
.apply-container h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
}
 
.apply-container p {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}
 
.form-group {
  margin-bottom: 20px;
  position: relative;
}
 
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: #444;
  transition: color 0.3s ease;
}
 
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 15px;
  transition: all 0.4s ease;
}
 
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border: 2px solid #2575fc;
  box-shadow: 0 0 10px rgba(37,117,252,0.4);
}
 
textarea {
  min-height: 100px;
  resize: none;
}
 
.submit-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
 
.submit-btn:hover {
  background: linear-gradient(135deg, #2575fc, #6a11cb);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}