body {
  background-color: #FBFFF6;
  font-family: "Segoe UI", sans-serif;
}

/* WRAPPER */
.login-wrapper {
  padding: 40px 30px;
}

/* LEFT */
.left-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo{
  padding: 0px 80px;
}
/* LOGO */
.logo-img {
  max-width: 150px;
  margin-bottom: 40px;
}

/* FORM BOX */
.register-box {
  max-width: 360px;
  width: 100%;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}

/* INPUT */
.form-control {
  height: 40px;
  font-size: 14px;
}

/* PASSWORD ICON */
.toggle-password {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
}

/* RIGHT CARD */
.right-card {
  background: linear-gradient(135deg, #7ab93b, #4caf50);
  border-radius: 20px;
  padding: 30px;

  width: 100%;
  max-width: 420px;
  min-height: 520px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;
}

/* GLASS CARD */
.card-inner {
  position: relative;
  width: 100%;
  text-align: center;

  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(25px);

  border-radius: 20px;
  padding: 25px;
  color: #fff;
overflow: visible;
  border: 1px solid rgba(255,255,255,0.3);
}

/* TEXT */
.card-inner h3 {
  font-size: 20px;
  font-weight: 700;
}

/* IMAGE GLASS */
.image-glass {
  margin-top: 25px;
  padding: 20px;
  border-radius: 15px;

}

/* PHONE IMAGE */
.phone-img {
  width: 330px;
  height: auto;
  overflow: visible;
}

/* DOTS */
.custom-dots {
  margin-top: 15px;
}

.custom-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  margin: 0 4px;
}

.custom-dots .active {
  background: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .right-card {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .login-wrapper {
    padding: 20px;
  }

  .phone-img {
    width: 100%;
  }
}