/* ===== MAIN SECTION ===== */
.application-form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, #fafafa 0%, #f0f4ff 100%);
}

/* ===== CONTAINER ===== */
.form-container-main {
  width: 100%;
  max-width: 1100px;
  text-align: center;
}

/* ===== HEADING ===== */
.heading--primary {
  font-size: 40px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease forwards;
}

/* ===== FORM CARD ===== */
.form-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
  text-align: left;
  animation: scaleIn 0.6s ease forwards;
  transition: all 0.3s ease;
}

.form-container:hover {
  transform: translateY(-6px);
}

/* ===== SUB HEADING ===== */
.heading--secondary {
  font-size: 22px;
  font-weight: 600;
  color: #202124;
  margin-bottom: 20px;
}

/* ===== FORM ===== */
.application-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 25px;
}

/* FULL WIDTH ITEMS */
.application-form textarea,
.application-form button,
.application-form select {
  grid-column: span 2;
}

/* ===== LABEL ===== */
.application-form label {
  font-size: 13px;
  color: #5f6368;
  margin-bottom: -10px;
}

/* ===== INPUT ===== */
.input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  background: #fafafa;
  transition: all 0.25s ease;
}

.input:focus {
  outline: none;
  border-color: #4285F4;
  background: white;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

/* FILE INPUT */
input[type="file"] {
  padding: 10px;
  background: white;
}

/* TEXTAREA */
textarea {
  resize: none;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  transition: all 0.25s ease;
}

textarea:focus {
  border-color: #4285F4;
  background: white;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

/* ===== BUTTON ===== */
.btn-primary-strong {
  margin-top: 10px;
  padding: 14px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary-strong:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(66, 133, 244, 0.3);
}

/* BUTTON SHINE EFFECT */
.btn-primary-strong::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shine {
  0% { left: -60%; }
  40% { left: 120%; }
  100% { left: 120%; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .application-form {
    grid-template-columns: 1fr;
  }

  .application-form textarea,
  .application-form button,
  .application-form select {
    grid-column: span 1;
  }

  .heading--primary {
    font-size: 30px;
  }

  .form-container {
    padding: 25px;
  }
}