
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.hidden {
  display: none;
}

.modal-content {
/*  border: 2px dashed #fff;*/
  transition: background-color 0.3s, border-color 0.3s;
  background: linear-gradient(to right, rgba(20,40,60,0.9), rgba(20,30,50,0.9));
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  color: #fff;
  max-width: 960px;
  width: 95%;
  display: flex;
  overflow: hidden;
}

.modal-preview {
  transition: background-color 0.3s, border-color 0.3s;
  background: linear-gradient(to right, rgba(20,40,60,0.9), rgba(20,30,50,0.9));
  flex: 1;
  padding: 2rem;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-wizard {
  flex: 1.2;
  padding: 3rem 2.5rem;
  position: relative;
}

.close-button {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}

.modal-wizard h2 {
   font-size: 1.8rem;
   font-weight: 600;
   color: #FF5722;
   margin: 12px 0 12px 0;
}

.modal-wizard h3 {
   font-size: 1.8rem;
   font-weight: 600;
   color: #FFFFFF;
   margin: 12px 0 12px 0;
}

.modal-wizard p {
  font-size: 16px;
  margin: 6px 0;
  color: #e0f7fa;
}

.modal-wizard button {
    float: left;
    display: block;
    padding: 10px 20px;
    background-color: #FF5722;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.wizard-step {
  display: none;
}

.wizard-step:not(.hidden) {
  display: block;
}

.wizard-step#step1 {
  background: linear-gradient(135deg, #2196F3, #00796B);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 32px;
  transition: all 0.4s ease;
  color: #fff;
  height: 280px;
}




.wizard-step#step2 {
  background: linear-gradient(135deg, #2196F3, #00796B);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 32px;
  transition: all 0.4s ease;
  color: #fff;
  height: 370px;
}



.wizard-step#corp-step {
  background: linear-gradient(135deg, #2196F3, #00796B);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 32px;
  transition: all 0.4s ease;
  color: #fff;
  height: 410px;
}


.wizard-step#step3 {
  background: linear-gradient(135deg, #2196F3, #00796B);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 32px;
  transition: all 0.4s ease;
  color: #fff;
  height: 280px;
}

#selected-plan-name {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}

#selected-plan-price {
  font-size: 16px;
  color: #ffccbc;
}

.input {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.btn-group {
  width: 100%;
  padding: 0.8rem 1rem;
  display: block;
}

.input.error {
  border-color: #f44336;
  background-color: rgba(244, 67, 54, 0.1);
}

.error-message {
  color: #f44336;
  font-size: 0.85rem;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-style: italic;
}