/* ── Apply Page ────────────────────────────────────────────── */
.apply-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.apply-header {
  text-align: center;
  margin-bottom: 2rem;
}

.apply-logo {
  margin-bottom: 1rem;
}

.apply-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.apply-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Form ── */
.apply-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.apply-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.apply-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.field-required {
  color: #EF4444;
  font-weight: 700;
}

.apply-submit {
  margin-top: 0.5rem;
}

/* ── Confirmation ── */
.confirm-card {
  text-align: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  animation: fadeUp 0.4s ease;
}

.confirm-icon {
  margin-bottom: 1rem;
}

.confirm-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.confirm-message {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.confirm-summary {
  text-align: left;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.8125rem;
}

.confirm-row-label {
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
}

.confirm-row-value {
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .apply-container {
    padding: 2rem 1.25rem;
  }

  .apply-title {
    font-size: 1.25rem;
  }

  .confirm-card {
    padding: 2rem 1.25rem;
  }
}
