:root {
  --themeprimaryclr: #FF671F;
  --dark-primaryclr: #E55A17;
  --themesecondaryclr: #06038D;
  --gray-200: #1A1A1A;
  --gray-100: #333333;
  --lightbg: #F5F5F5;
  --plainclr: #FFFFFF;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

.split-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.left-banner {
  flex: 1;
  background-image: url("https://staticdev.locowiz.com/locomedia/website-builder/image/banner.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.right-form-area {
  flex: 1;
  background: var(--plainclr);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  position: relative;
  overflow-y: auto;
}

.form-wrapper {
  width: 100%;
  max-width: 500px;
  position: relative;
}

.floating-step {
  position: absolute;
  top: 11px;
  right: 0;
  font-size: 5rem;
  font-weight: 800;
  color: var(--lightbg);
  z-index: 0;
}

.step-header {
  position: relative;
  z-index: 1;
  margin-bottom: 35px;
}

.step-header h1 {
  font-family: "Merriweather", serif;
  font-size: 2.2rem;
  color: var(--gray-200);
  margin-bottom: 8px;
}

.step-header p {
  color: var(--gray-100);
  font-size: 0.95rem;
}

.progress-line {
  display: flex;
  gap: 8px;
  margin-bottom: 35px;
}

.line-seg {
  height: 5px;
  flex: 1;
  background: #E2E8F0;
  border-radius: 10px;
  position: relative;
}

.line-seg.active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--themeprimaryclr);
  border-radius: 10px;
  animation: fillLine 0.5s ease forwards;
}

@keyframes fillLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.step-content,
.success-box,
.btn-hidden,
.error-msg {
  display: none;
}

.step-content.active,
.success-box.active {
  display: block;
  animation: slideUp 0.5s ease;
}

/* Error Message Design */
.error-msg {
  color: #dc3545;
  font-size: 0.75rem;
  margin-top: 4px;
  font-weight: 500;
}

.field.has-error .error-msg {
  display: block;
}

.field.has-error .form-control {
  border-color: #dc3545;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.full {
  grid-column: span 2;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--gray-100);
  font-size: 0.85rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background-color: var(--plainclr);
  transition: 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--themeprimaryclr);
  box-shadow: 0 0 0 4px rgba(255, 103, 31, 0.1);
}

.field-checkbox-wrapper {
  grid-column: span 2;
  margin-top: 10px;
}

.field-checkbox-wrapper label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
}

.field-checkbox-wrapper input {
  width: 18px;
  height: 18px;
  accent-color: var(--themeprimaryclr);
}

.btn-footer {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.btn-next {
  flex: 2;
  background: var(--themeprimaryclr);
  color: var(--plainclr);
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-prev {
  flex: 1;
  background: var(--lightbg);
  color: var(--gray-100);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.footer-link-box {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: var(--gray-100);
}

.footer-link-box a {
  color: var(--themeprimaryclr);
  font-weight: 700;
  text-decoration: none;
}

.success-box {
  text-align: center;
  padding: 40px 0;
}

.success-box i {
  font-size: 5rem;
  color: #22c55e;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .left-banner {
    display: none;
  }
  .right-form-area {
    padding: 30px 20px;
  }
}/*# sourceMappingURL=registerpage.css.map */