/* MODAL CARD */
.signup-modal {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 25px 70px rgba(0,0,0,0.15);
  position: relative;
}

/* CLOSE BUTTON */
/* SMALLER CLEAN CLOSE BUTTON */
.custom-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;              /* reduced size */
  height: 32px;             /* reduced size */
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  opacity: 1;
  z-index: 10;
  padding: 0;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Remove default bootstrap icon */
.custom-close::before {
  content: "✕";
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1;
}

/* Remove bootstrap background image */
.custom-close {
  background-image: none !important;
}

/* Hover effect */
.custom-close:hover {
  background: #f5f5f5;
  transform: rotate(90deg);
  transition: 0.3s ease;
}

/* WRAPPER */
.signup-wrapper {
  display: flex;
  min-height: 600px;
  font-family: 'Inter', sans-serif;
}

/* LEFT PANEL */
.left-panel {
  flex: 1;
  background: #ffffff;
  padding: 70px 60px;
  display: flex;
  align-items: center;
}

.form-container {
  width: 100%;
  max-width: 400px;
  margin: auto;
}

.form-container h2 {
  font-weight: 600;
  margin-bottom: 35px;
}

/* FORM */
.form-group {
  margin-bottom: 20px;
}

.form-control {
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  padding: 14px 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #4a55ff;
  box-shadow: none;
}

/* SIGNUP BUTTON */
.btn-signup {
  background: linear-gradient(135deg, #4a55ff, #6f75ff);
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-signup:hover {
  opacity: 0.9;
}

/* DIVIDER */
.divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.divider::before {
  content: "";
  height: 1px;
  width: 100%;
  background: #e5e5e5;
  position: absolute;
  top: 50%;
  left: 0;
}

.divider span {
  background: #fff;
  padding: 0 15px;
  position: relative;
  color: #888;
  font-size: 14px;
}

/* SOCIAL BUTTONS */
.social-btn {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #fff;
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.google {
  background: #db4437;
}

.linkedin {
  background: #0077b5;
}

/* RIGHT PANEL */
/* RIGHT PANEL WITH BLUR IMAGE */
.right-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 60px;
  color: #fff;
}

/* Light overlay for readability */
.right-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4); /* light blur effect */
  z-index: 2;
}

/* Content above blur */
.right-content {
  position: relative;
  z-index: 3;
  max-width: 400px;
  text-align: center;
  color: #222; /* darker text because background is light */
}

.right-content h3 {
  font-weight: 600;
  margin-bottom: 20px;
}

.right-content p {
  line-height: 1.6;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .signup-wrapper {
    flex-direction: column;
  }

  .right-panel {
    display: none; /* hide right panel on mobile for clean look */
  }

  .left-panel {
    padding: 50px 30px;
  }
}