.norti-form-container {
  max-width: 500px;
  margin: 50px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  font-family: 'Arial', sans-serif;
}

.form-step { 
  display: none; 
  flex-direction: column; 
  gap: 15px; 
  animation: fadeIn 0.5s ease-in-out; 
}

.form-step.active { display: flex; }

label { font-weight: bold; font-size: 16px; }

input, select, textarea { 
  padding: 10px; 
  font-size: 14px; 
  border: 1px solid #ccc; 
  border-radius: 6px; 
  width: 100%; 
}


button:hover { background-color: #3730a3; }
button.prev-btn { background-color: #ccc; color: #000; }
button.prev-btn:hover { background-color: #999; }

@keyframes fadeIn { 
  from {opacity:0; transform: translateY(10px);} 
  to {opacity:1; transform: translateY(0);} 
}

.success-step { text-align: center; }
