.elementor-1685 .elementor-element.elementor-element-322a6f6{--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-910cb77 *//* Background styling */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  background: linear-gradient(135deg, #d63384, #6f42c1);
  padding: 20px;
}

/* Login box */
.login-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 400px;
  text-align: center;
  animation: fadeIn 0.8s ease-in-out;
}

/* Heading */
.login-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;
}

/* Login button */
.btn-login {
  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-login:hover {
  background: linear-gradient(135deg, #6f42c1, #d63384);
  transform: scale(1.03);
}

/* WhatsApp button */
.whatsapp-btn {
  margin-top: 20px;
}

.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 */