* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6d214f;
  --secondary: #8e2c63;
  --gold: #d4af37;
  --dark: #1c0b14;
}

body {
  font-family: "Poppins", sans-serif;
  background: #faf7f9;
}

/* Main Layout */
.register-container {
  display: flex;
  min-height: 100vh;
}

/* Left Side */
.register-left {
  width: 45%;
  background:
    linear-gradient(rgba(28, 11, 20, .55),
      rgba(28, 11, 20, .75)),
    url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1800&q=90');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-content {
  color: white;
  text-align: center;
  padding: 40px;
}

.brand-content h1 {
  font-size: 56px;
  margin-bottom: 15px;
}

.brand-content p {
  font-size: 20px;
  line-height: 1.8;
}

/* Right Side */
.register-right {
  width: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.register-box {
  width: 100%;
  max-width: 500px;
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.register-box h2 {
  font-size: 34px;
  color: var(--primary);
  margin-bottom: 25px;
}

/* Progress */
.progress-bar {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
}

.progress-fill {
  width: 20%;
  height: 100%;
  background: linear-gradient(135deg,
      var(--gold),
      #f7d96b);
  transition: .4s;
}

/* Form Steps */
.form-step {
  display: none;
  animation: fadeIn .4s ease;
}

.form-step.active {
  display: block;
}

.form-step h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

/* Inputs */
input,
select {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  outline: none;
  transition: .3s;
}

input:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(109, 33, 79, .08);
}

/* Buttons */
.button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.button-group button {
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: .3s;
}

#prevBtn {
  background: #ddd;
}

#nextBtn {
  background: linear-gradient(135deg,
      var(--primary),
      var(--secondary));
  color: white;
}

.button-group button:hover {
  transform: translateY(-3px);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media(max-width: 992px) {
  .register-left {
    display: none;
  }

  .register-right {
    width: 100%;
  }
}

@media(max-width: 576px) {
  .register-box {
    padding: 25px;
  }

  .register-box h2 {
    font-size: 28px;
  }
}