.elementor-112 .elementor-element.elementor-element-7146583{--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;}/* Start custom CSS for html, class: .elementor-element-3c573e8 *//* ===== BASE RESET ===== */
.login-wrapper,
.login-wrapper * {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ===== WRAPPER ===== */
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #f1f5f9;
  padding: 20px;
}

/* ===== CARD ===== */
.login-card {
  display: flex;
  max-width: 900px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

/* ===== LEFT PANEL ===== */
.login-left {
  flex: 1;
  background: linear-gradient(135deg, #6C63FF, #4F46E5);
  color: #ffffff;
  text-align: center;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login-left .logo {
  max-width: 140px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.academy-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #FFD700;
}

.academy-subtitle {
  font-size: 16px;
  margin-bottom: 15px;
  opacity: 0.95;
}

.academy-phone {
  font-size: 17px;
  font-weight: 600;
  color: #00FFD5;
}

/* ===== RIGHT PANEL ===== */
.login-right {
  flex: 1;
  padding: 50px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-right h3 {
  font-size: 28px;
  margin-bottom: 6px;
}

.login-right .subtitle {
  color: #6b7280;
  margin-bottom: 25px;
}

/* ===== TUTOR LMS FORM FIX ===== */
.login-right form {
  width: 100%;
}

.login-right input[type="text"],
.login-right input[type="password"],
.login-right input[type="email"] {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 0 14px;
  margin-bottom: 14px;
  font-size: 15px;
}

.login-right button,
.login-right input[type="submit"] {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  background: #4F46E5;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.login-right button:hover,
.login-right input[type="submit"]:hover {
  background: #4338ca;
}

/* ===== EXTRA OPTIONS ===== */
.extra-options {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 14px;
}

.extra-options a {
  color: #4F46E5;
  text-decoration: none;
}

.extra-options a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .login-card {
    flex-direction: column;
  }

  .login-left,
  .login-right {
    padding: 35px 25px;
  }

  .academy-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {

  .login-wrapper {
    padding: 10px;
    align-items: flex-start;
  }

  .login-left {
    padding: 30px 20px;
  }

  .login-left .logo {
    max-width: 110px;
  }

  .academy-title {
    font-size: 22px;
  }

  .academy-subtitle,
  .academy-phone {
    font-size: 14px;
  }

  .login-right {
    padding: 30px 20px;
  }

  .login-right h3 {
    font-size: 22px;
  }

  .extra-options {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* ===== HIDE LEFT PANEL ON VERY SMALL DEVICES ===== */
@media (max-width: 420px) {
  .login-left {
    display: none;
  }
}/* End custom CSS */