:root {
  --orange-primary: #ff6b00;
  --orange-hover: #e65c00;
  --bg-light: #f8f9fa;
}

#msform {
  text-align: center;
  position: relative;
  margin-top: 20px;
}

#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 30px;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  position: relative;
}

#msform fieldset:not(:first-of-type) {
  display: none;
}

#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: #adb5bd;
  padding-left: 0px;
  display: flex;
  justify-content: space-between;
}

#progressbar li {
  list-style-type: none;
  font-size: 10px;
  width: 33.33%;
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
}

#progressbar li:before {
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  font-size: 14px;
  color: #ffffff;
  background: #dee2e6;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  position: relative;
  z-index: 2;
}

#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #dee2e6;
  position: absolute;
  left: -50%;
  top: 17px;
  z-index: 1;
}

#progressbar li:first-child:after {
  content: none;
}

#progressbar li.active {
  color: var(--orange-primary);
}

#progressbar li.active:before,
#progressbar li.active:after {
  background: var(--orange-primary);
}

#progressbar #account:before { content: "1"; }
#progressbar #personal:before { content: "2"; }
#progressbar #confirm:before { content: "3"; }

.action-button {
  width: 100px;
  background: var(--orange-primary);
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 50px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
  float: right;
  transition: all 0.3s;
}

.action-button:hover {
  background: var(--orange-hover);
}

.action-button-previous {
  width: 100px;
  background: #6c757d;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 50px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
  float: left;
  transition: all 0.3s;
}

.fs-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #212529;
  margin-bottom: 20px;
}

.form-card {
  text-align: left;
}

.btn_plus {
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  color: #6c757d;
  padding: 20px;
  border-radius: 15px;
  display: block;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.btn_plus:hover {
  border-color: var(--orange-primary);
  color: var(--orange-primary);
}

#preview-fotos img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 8px;
  margin-bottom: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}