* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background: #111827;
  color: white;

  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 650px;
  padding: 25px;
}

.application-card {
  background: #1f2937;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

h1 {
  margin-top: 0;
  text-align: center;
  font-size: 32px;
}

.subtitle {
  text-align: center;
  color: #9ca3af;
  margin-bottom: 30px;
}

label {
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: bold;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #374151;
  border-radius: 8px;
  background: #111827;
  color: white;
  font-size: 15px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #6366f1;
}

button {
  width: 100%;
  margin-top: 25px;
  padding: 14px;

  border: none;
  border-radius: 8px;

  background: #6366f1;
  color: white;

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

  cursor: pointer;
}

button:hover {
  background: #4f46e5;
}

.success-message {
  display: none;
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  background: #065f46;
  text-align: center;
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 1000;
}

.editor-box {
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background: #1f2937;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.check-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-label input {
  width: auto;
}

.editor-buttons {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.editor-buttons button {
  margin-top: 0;
}
.already-submitted {
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: #111827;
  text-align: center;
}

.already-submitted h2 {
  margin-bottom: 10px;
}

.application-question {
  margin-bottom: 25px;
}

.application-question label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}
