*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: auto;
  background-image: url("/assets_v1/img/login-bg.webp");
  background-size: cover !important;
}
.select2-container--default .select2-selection--single {
  height: 45px;
  margin-top: 4px;
  background: #f0f2f5;
  border: 1.5px solid transparent;
  border-radius: 10px;
  outline: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 10px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  margin-top: 8px;
}
.page-wrapper {
  display: flex;
  min-height: 100vh;
}
.left-panel {
  flex: 1;
  /*background: linear-gradient(135deg, @yellow-start 0%, @yellow-end 100%);*/
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  position: relative;
  overflow: hidden;
  padding: 60px 40px;
}
.left-panel::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  top: -180px;
  left: -180px;
}
.left-panel::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: -120px;
  right: -120px;
}
.brand-block {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.brand-icon {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.brand-icon svg {
  width: 52px;
  height: 52px;
}
.brand-name {
  font-size: 3.4rem;
  font-weight: 900;
  color: #111111;
  letter-spacing: -2px;
  line-height: 1;
}
.tagline {
  font-size: 1.45rem;
  font-weight: 500;
  color: #111111;
  position: relative;
  z-index: 2;
  text-align: center;
}
.tagline strong {
  font-weight: 800;
  position: relative;
  display: inline-block;
}
.tagline strong::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #111111;
  border-radius: 2px;
}
.right-panel {
  /*width: 50%;*/
  max-width: 640px;
  /*background: #f2f4f7;*/
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
}
.login-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 44px 0px;
  width: 100%;
  max-width: 580px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
  
  /*height: 100%;
  display: flex;
  align-items: center;*/
}
.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 32px;
}
.field-wrap {
  position: relative;
  margin-bottom: 14px;
}
.field-input {
  width: 100%;
  background: #f0f2f5;
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 0.775rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field-input::placeholder {
  color: #b0b7c3;
}
.field-input:focus {
  border-color: #f5c200;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(245, 194, 0, 0.15);
}
.field-input.is-invalid {
  border-color: #e74c5e;
  background: #fff5f6;
}
.eye-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  color: #9ca3af;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.eye-btn:hover {
  color: #1a1a1a;
}
.forgot-link {
  display: inline-block;
  font-size: 0.85rem;
  color: #3b82f6;
  text-decoration: none;
  margin-bottom: 22px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.forgot-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}
.btn-signin {
  display: block;
  width: 100%;
  padding: 15px;
  background: #111111;
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 20px;
}
.btn-signin:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.btn-signin:active {
  transform: translateY(0);
}
.btn-signin .spinner-border {
  width: 16px;
  height: 16px;
  border-width: 2px;
}
.signup-row {
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 30px;
}
.signup-row a {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
}
.signup-row a:hover {
  text-decoration: underline;
}
.lang-area {
  border-top: 1px solid #e4e6ea;
  padding-top: 20px;
  display: flex;
  align-items: center;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  transition: opacity 0.2s;
}
.lang-btn img.flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}
.lang-btn .bi {
  font-size: 0.75rem;
  color: #9ca3af;
}
.lang-btn:hover {
  opacity: 0.75;
}
.lang-dropdown {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border: 1px solid #e4e6ea;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  min-width: 160px;
  overflow: hidden;
  display: none;
  z-index: 999;
}
.lang-dropdown.show {
  display: block;
}
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.15s;
}
.lang-dropdown a img.flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
.lang-dropdown a:hover {
  background: #f5f7fa;
}
.lang-dropdown a.active {
  font-weight: 600;
  background: #fafbfc;
}
.lang-wrap {
  position: relative;
}
.error-alert {
  background: #fff2f4;
  border: 1px solid #fbc8cf;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #e74c5e;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  display: none;
}
.empower-local-retial {
  background-image: url("{{ asset('assets_v1/img/login-underline.webp') }}");
  height: 43px;
  background-repeat: no-repeat;
  background-position: 100% 97%;
  background-size: 124px;
  color: #000;
  font-size: 26px;
}
.flex-center {
  justify-content: center;
  align-items: center;
}
/* Compact Plan Summary Styling */
.plan-summary {
  background-color: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 1.25rem;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.plan-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.plan-icon {
  background: #fff3cd;
  color: #856404;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.2rem;
}
.plan-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #adb5bd;
  font-weight: 700;
  margin-bottom: 0;
}
.plan-name {
  font-weight: 700;
  color: #333;
  margin: 0;
  font-size: 1.1rem;
}
.plan-pricing {
  text-align: right;
}
.price-text {
  font-weight: 800;
  font-size: 1.5rem;
  color: #111;
}
.duration-text {
  color: #6c757d;
  font-size: 0.85rem;
  font-style: italic;
}

html[dir="ltr"] .select2-container--default .select2-selection--single .select2-selection__arrow {left: auto; right: 1px}
html[dir="ltr"] .select2-container--default .select2-selection--single .select2-selection__rendered {
  text-align: left;
  direction: ltr;
}
html[dir="rtl"] #jquery-intl-phone{
  text-align: right;
}
@media (max-width: 900px) {
  .page-wrapper {
    flex-direction: column;
    overflow: auto;
  }
  .left-panel {
    
    flex: none;
    padding: 40px 20px 0 20px;
    gap: 50px;
    overflow: visible;
  }
  .brand-name {
    font-size: 2.4rem;
  }
  .brand-icon {
    width: 62px;
    height: 62px;
  }
  .brand-icon svg {
    width: 38px;
    height: 38px;
  }
  .tagline {
    font-size: 1.1rem;
  }
  .right-panel {
    width: 100%;
    max-width: 100%;
    padding: 30px 16px 40px;
  }
  .select2-container {
    width: 100% !important;
  }
  .w-150px {
      width: 150px !important;
  }
  .left-panel::after {
    width: 0% !important;
  }
  .left-panel::before {
    width: 0% !important;
  }
}
@media (min-width: 992px) {
  .w-lg-300px {
    width: 300px !important;
  }
  .select2-container {
    width: 100%;
  }
  .left-panel::after {
    width: 0% !important;
  }
  .left-panel::before {
    width: 0% !important;
  }
}
@media (min-width: 768px) {
  .w-md-400px {
    width: 400px !important;
  }
  .w-md-485px {
    width: 485px !important;
  }
  .select2-container {
    width: 100%;
  }
  .left-panel::after {
    width: 0% !important;
  }
  .left-panel::before {
    width: 0% !important;
  }
}
@media (max-width: 480px) {
  .login-card {
    padding: 32px 20px 28px;
  }
  .card-title {
    font-size: 1.25rem;
  }
  .select2-container {
    width: 100% !important;
  }
  .left-panel::after {
    width: 0% !important;
  }
  .left-panel::before {
    width: 0% !important;
  }
}
@media (max-width: 325px) {
  .w-100p{
    width: 100%;
  }
}
