.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: absolute;
  top: -4rem;
  left: -30px;
  transition: 0.3s ease;
}

.brand-logo img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.brand-logo span {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.5px;
}

.brand-logo:hover img {
  transform: scale(1.07) rotate(-3deg);
}

.brand-logo:hover span {
  color: #0077ff;
}
@media (max-width: 768px) {
  .image-section {
    display: none !important;
  }
}
/* ⚙️ Wrapper Layout */
.signup-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  padding: 60px;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  font-family: "Poppins", system-ui, sans-serif;
}

/* 🖼 Image Section */
.image-section {
  width: 42%;
  height: 88vh;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.image-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  filter: brightness(0.92);
}

.image-slider img.active {
  opacity: 1;
  filter: brightness(1);
}

/* 🟣 Dots */
.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: #fff;
  transform: scale(1.35);
}

/* 💡 Signup Section */
/* 💡 Register Section */
.register-section {
  width: 43%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

.reg-content {
  width: 100%;
  max-width: 520px;
  text-align: center;
  padding: 10px 0;
  animation: fadeUp 0.8s ease forwards;
}

/* 🧭 Headings */
.reg-content h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  color: #0f172a;
}

.reg-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.6;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* 📋 Input Group */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.input-group input {
  padding: 15px 18px;
  font-size: 15.5px;
  border-radius: 12px;
  border: 1.5px solid #ccc;
  outline: none;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.input-group input::placeholder {
  color: #999;
  transition: 0.3s;
}

.input-group input:focus {
  border-color: #0077ff;
  box-shadow: 0 0 10px rgba(0, 119, 255, 0.25);
  background: #fff;
}

.input-group input:focus::placeholder {
  color: #bbb;
  transform: translateX(3px);
}

/* 🔘 Button */
button {
  background: linear-gradient(135deg, #0077ff, #005ae0);
  color: #fff;
  border: none;
  padding: 15px 24px;
  font-size: 17px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  letter-spacing: 0.4px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 119, 255, 0.2);
}

button:hover {
  background: linear-gradient(135deg, #0062ff, #004dd5);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 119, 255, 0.35);
}

button:active {
  transform: translateY(0);
  box-shadow: 0 5px 12px rgba(0, 119, 255, 0.25);
}

/* 🌙 Subtle Fade-In Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Responsive (Mobile) */
@media (max-width: 992px) {
  .register-section {
    width: 100%;
    padding: 40px 20px;
  }

  .reg-content h2 {
    font-size: 28px;
  }

  .reg-content p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .input-group input {
    padding: 14px 16px;
    font-size: 15px;
  }

  button {
    font-size: 16px;
    padding: 14px 22px;
  }
}

/* 📱 Smaller Screens */
@media (max-width: 600px) {
  .reg-content {
    max-width: 100%;
    text-align: center;
  }

  .reg-content h2 {
    font-size: 26px;
  }

  .input-group {
    gap: 14px;
  }

  button {
    border-radius: 10px;
  }
}
