* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  min-height: 100vh;
  padding: 20px;
  position: relative;
  overflow-x: hidden;
}

.page-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-container {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

.logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo h1 {
  color: #1e3a8a;
  font-size: 28px;
  font-weight: 700;
}

.logo p {
  color: #64748b;
  font-size: 16px;
  margin-top: 4px;
}

.progress-wrapper {
  margin-bottom: 30px;
}

.progress-text {
  display: flex;
  justify-content: space-between;
  color: #475569;
  font-size: 14px;
  margin-bottom: 8px;
}

.progress-bar-container {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(to right, #1e40af, #2563eb);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.question-section {
  margin-bottom: 30px;
}

.question-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.question-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.input-field {
  width: 100%;
  padding: 14px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  transition: border-color 0.2s;
}

.input-field:focus {
  outline: none;
  border-color: #2563eb;
}

.radio-options {
  display: grid;
  gap: 12px;
}

.radio-option {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.radio-option:hover {
  border-color: #2563eb;
  background: #f8fafc;
}

.radio-option.selected {
  border-color: #2563eb;
  background: #eff6ff;
}

.radio-icon {
  font-size: 20px;
  margin-right: 12px;
}

.radio-text {
  font-size: 16px;
  color: #1e293b;
}

.button-container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.btn {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
  transform: none;
}

.btn-next {
  background: linear-gradient(to right, #1e40af, #2563eb);
  color: white;
}

.btn-back {
  background: #f1f5f9;
  color: #1e293b;
}

.footer-text {
  text-align: center;
  color: white;
  font-size: 14px;
  margin-top: 24px;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.security-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.security-icon {
  font-size: 14px;
}

.success-screen {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 48px;
  color: #22c55e;
  margin-bottom: 20px;
}

.success-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.success-message {
  font-size: 16px;
  color: #64748b;
}

.hidden {
  display: none;
}