/* ===============================
   Global Variables
================================ */
:root {
  --primary-color: #6c63ff;
  --secondary-color: #f9ca24;
  --text-color: #333;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
  --radius: 12px;
}

/* ===============================
   Reset & Base
================================ */
body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-light);
  color: var(--text-color);
  margin: 0;
  padding: 0;
}

/* ===============================
   Layout
================================ */
.main-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.card {
  background: #fff;
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1100px;
}

/* ===============================
   Sidebar
================================ */
.sidebar {
  background: linear-gradient(180deg, var(--primary-color), #4834d4);
  color: #fff;
  width: 280px;
  padding: 40px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar .logo {
  width: 120px;
  margin-bottom: 40px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.steps li {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.steps li .icon-badge {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-right: 15px;
  color: #000;
  line-height: 1;
}

.steps li .icon-badge i.zmdi {
  font-size: 24px;
  color: #000;
}

.steps li span {
  font-weight: 600;
}

.steps li.active .icon-badge {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.4);
}

/* ===============================
   Content
================================ */
.content {
  flex: 1;
  padding: 50px;
}

.content h2 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
}

label {
  font-weight: 500;
  margin-bottom: 6px;
  display: inline-block;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  font-size: 15px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.btn {
  background: var(--primary-color);
  border: none;
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #5849d8;
}

/* ===============================
   Info / Review / QR Section
================================ */
.info-list {
  background: #fdfdfd;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.info-list p {
  margin: 0 0 10px;
  font-size: 15px;
}

.qr-box {
  border: 2px dashed var(--primary-color);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
}

.qr-box img {
  max-width: 150px;
  margin-bottom: 15px;
}

.qr-box input {
  margin-top: 10px;
}

/* ===============================
   Responsive
================================ */
@media (max-width: 992px) {
  .card {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    padding: 20px;
  }
  .steps li {
    margin-bottom: 0;
  }
  .content {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .steps li span {
    display: none;
  }
  .sidebar .logo {
    width: 80px;
    margin-bottom: 0;
  }
}
