/* ===== APPLY NOW PAGES ===== */

.apply-page {
  min-height: 100vh;
  padding: 5rem 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6; /* light gray background */
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.apply-card {
  max-width: 520px;
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
  text-align: center;
  border: 1px solid #e5e7eb;
}

.apply-card h1 {
  margin: 0 0 0.4rem;
  font-size: 1.9rem;
  font-weight: 800;
  color: #1f2b6c; /* Salam blue */
}

.apply-card h2 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #6b7280;
}

.apply-card p {
  margin: 0;
  font-size: 0.98rem;
  color: #4b5563;
}

.apply-buttons {
  margin-top: 1.8rem;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .apply-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.apply-btn span {
  margin-left: 0.4rem;
}

.apply-btn.primary {
  background: #e24533;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(226, 69, 51, 0.25);
}

.apply-btn.primary:hover {
  background: #ca4435;
  transform: translateY(-1px);
}

.apply-btn.outline {
  background: #eef2ff;        /* soft blue */
  color: #1f2b6c;             /* Salam blue text */
  border-color: #c7d2fe;      /* subtle blue border */
  box-shadow: 0 8px 20px rgba(31, 43, 108, 0.15);
}

.apply-btn.outline:hover {
  background: #e0e7ff;
  border-color: #a5b4fc;
  transform: translateY(-1px);
}


.apply-note {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 0.2rem;
}

.apply-back {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 0.95rem;
  color: #4b5563;
  text-decoration: none;
}

.apply-back:hover {
  text-decoration: underline;
}
