* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #140e6c;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* container */
.container {
  width: 100%;
  max-width: 1100px;
  padding: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  overflow: hidden;
}

/* form layout */
.form {
  display: flex;
  width: 100%;
}

/* left Side */
.left-side {
  background: #185fe4;
  color: #fff;
  padding: 30px 25px;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.left-heading h3 {
  font-size: 25px;
  margin-bottom: 20px;
}

.step-content {
  margin-top: -50px;
}

.step-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.4;
  display: none;
}

.step-content p.active {
  display: block;
}

/* Progress Bar */
.progress-bar {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.progress-bar li {
  margin: 15px 0;
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  opacity: 0.7;
  transition: 0.3s;
}

.progress-bar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ccc3c3;
  background: transparent;
}

.progress-bar li.active {
  font-weight: 600;
  opacity: 1;
}

.progress-bar li.active::before {
  background: #e7dede;
}

/* Right Side */
.right-side {
  width: 70%;
  padding: 40px;
}

/* Sections */
.main {
  display: none;
  height: 400px;
}
.mains{
  display: none;
}

.main-active {
  display: block;
}

/* Section Headings */
.text h2 {
  font-size: 22px;
  color: #333;
  margin-bottom: 8px;
}

.text p {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

/* Input Fields */
.input-text {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.input-div {
  flex: 1;
}

input,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}

input:focus,
select:focus {
  border-color: #2d6cdf;
  box-shadow: 0 0 4px rgba(45, 108, 223, 0.3);
}
.user_card{
  display: flex;
  border: 2px dashed #ccc;
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  justify-content: center;
  background: transparent;
}
.user_card p{
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  background: transparent;
}

/* Buttons */
.next-button {
  background: #1c56c2;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.next-button:hover {
  background: #0557fd;
}

.back-button {
  background: #5f6165;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.back-button:hover {
  background: #0d0d0e;
}

.submit-button {
  background: #28a745;
  color: #fff;
  padding: 10px 22px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.submit-button:hover {
  background: #218838;
}

.svgimg{
  text-align: center;
  font-size: 55px;
  color: #0557fd;
  font-weight: 700;
}