* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, #1a0033, #000 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.apply-wrapper {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.apply-card {
  width: 100%;
  max-width: 480px;
  background: rgba(15, 15, 20, 0.85);
  border: 1px solid rgba(185,131,255,0.4);
  border-radius: 22px;
  padding: 42px 36px;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.8),
    0 0 40px rgba(185,131,255,0.15);
  backdrop-filter: blur(14px);
  position: relative;
}

.apply-card h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
}

.subtitle {
  text-align: center;
  font-size: 15px;
  color: #bbb;
  margin-bottom: 34px;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #ccc;
}

.field input {
  width: 100%;
  padding: 16px 18px;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid #333;
  background: #0d0d11;
  color: #fff;
  outline: none;
  transition: all 0.25s ease;
}

.field input:focus {
  border-color: #b983ff;
  box-shadow: 0 0 0 2px rgba(185,131,255,0.2);
}

button {
  width: 100%;
  padding: 16px;
  margin-top: 12px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #b983ff, #7a3cff);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(185,131,255,0.5);
}

.note {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-top: 18px;
}

/* Mobile tweak */
@media (max-width: 480px) {
  .apply-card {
    padding: 34px 24px;
  }

  .apply-card h1 {
    font-size: 26px;
  }
}
.success-box {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  animation: fadeIn 0.4s ease;
}

.success-box h2 {
  margin-top: 14px;
  font-size: 24px;
  color: #7cff9b;
}

.checkmark {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #7cff9b;
  color: #000;
  font-size: 42px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pop 0.4s ease;
}

@keyframes pop {
  0% { transform: scale(0); }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}