/* APPLY PAGE */

.apply-page {
  background: #f8fafc;
}

.apply-hero {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(135deg, #1e40af, #2563eb);

  color: white;
}

.apply-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.apply-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.apply-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.apply-hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* FORM */

.application-section {
  padding-right: 20px;
  padding-bottom: 80px;
  padding-left: 20px;
  padding-top: 20px;
}

.application-container {
  max-width: 850px;
  margin: 0 auto;
}

.application-card {
  background: white;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.application-card h2 {
  text-align: center;
  margin-bottom: 35px;
  color: #1e293b;
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #334155;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid #dbe3ec;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-group textarea {
  resize: vertical;
}

.form-group small {
  margin-top: 8px;
  color: #64748b;
}

/* FILE INPUT */

input[type="file"] {
  padding: 12px;
  cursor: pointer;
}

/* BUTTON */

.submit-btn {
  margin-top: 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 15px 24px;

  border: none;
  border-radius: 12px;

  background: #2563eb;
  color: white;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.arrow-icon {
  width: 18px;
  height: 18px;
}

.alert {
  display: flex;
  align-items: flex-start;
  gap: 15px;

  padding: 18px 22px;
  margin: 30px;

  border-radius: 12px;
}

.alert-success {
  background: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
}

.alert-error {
  background: #fef2f2;
  border: 1px solid #ef4444;
  color: #991b1b;
}

.alert-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.alert p {
  margin: 6px 0 0;
}

@media (max-width: 768px) {
  .apply-hero-content h1 {
    font-size: 2.2rem;
  }

  .application-card {
    padding: 25px;
  }
}
