.elementor-1692 .elementor-element.elementor-element-298f91d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ac04661 *//* Background */
.signup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  background: linear-gradient(135deg, #d63384, #6f42c1);
  padding: 20px;
}

/* Sign Up box */
.signup-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 420px;
  text-align: center;
  animation: fadeIn 0.8s ease-in-out;
}

/* Heading */
.signup-box h2 {
  margin-bottom: 25px;
  color: #333;
  font-weight: 700;
  font-size: 22px;
}

/* Input fields */
.input-group {
  margin-bottom: 15px;
}

.input-group input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.input-group input:focus {
  border-color: #d63384;
}

/* Sign Up button */
.btn-signup {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #d63384, #6f42c1);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-signup:hover {
  background: linear-gradient(135deg, #6f42c1, #d63384);
  transform: scale(1.03);
}

/* OR Divider */
.or-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  position: relative;
}

.or-divider span {
  background: #fff;
  padding: 0 12px;
  font-weight: 600;
  color: #666;
  font-size: 14px;
  z-index: 2;
}

.or-divider::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ccc;
  top: 50%;
  left: 0;
  z-index: 1;
}

/* WhatsApp Button */
.whatsapp-btn a {
  display: inline-block;
  background: #25D366;
  color: #fff;
  font-size: 16px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.whatsapp-btn a:hover {
  background: #1ebe5d;
}

.whatsapp-btn i {
  margin-right: 8px;
  font-size: 18px;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}/* End custom CSS */