/* Legacy classes kept for the forgot-password page (not redesigned) */
.login-container {
  margin-top: 100px;
  margin-bottom: 100px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.login-areaa .social-area {
  text-align: center;
  padding-top: 26px;
}

.login-areaa .social-area .title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  color: #53bc1c;
  position: relative;
}

.login-areaa .social-area .title::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  top: 50%;
  transform: translateY(-50%);
  right: 100%;
  margin-right: 7px;
}

.login-areaa .social-area .title::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  margin-left: 7px;
}

.login-areaa .social-area .text {
  font-size: 16px;
  font-weight: 600;
  color: #143250;
}

.login-areaa .social-area .social-links {
  padding-left: 0px;
}

.login-areaa .social-area .social-links li {
  display: inline-block;
}

.login-areaa .social-area .social-links li a {
  height: 50px;
  padding: 0px 30px;
  border-radius: 4px;
  line-height: 50px;
  display: inline-block;
  color: #fff;
  margin: 0px 5px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}

.login-areaa .social-area .social-links li a.facebook {
  background: #0069f7;
}

.login-areaa .social-area .social-links li a.google {
  background: #d1062c;
}

.login-areaa .social-area .social-links li a i {
  margin-right: 5px;
}

.login-form {
  padding: 30px;
}

@media only screen and (max-width: 768px) {
  .social-area .social-links li:nth-child(2) {
    margin-top: 5px;
  }
}

/* Redesigned login / register */
.auth-section {
  --auth-navy: #11b997;
  --auth-navy-dark: #0c8f76;
  --auth-green: #53bc1c;
  padding: 60px 1.5rem;
  background: linear-gradient(180deg, #f2f7fb 0%, #eaf6ea 100%);
}

.auth-card {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(10, 23, 120, 0.12);
}

.auth-brand {
  flex: 1 1 40%;
  min-width: 280px;
  position: relative;
  padding: 50px 40px;
  color: #fff;
  background: linear-gradient(155deg, var(--auth-navy) 0%, var(--auth-navy-dark) 55%, var(--auth-green) 140%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.auth-brand::before,
.auth-brand::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.auth-brand::before {
  width: 260px;
  height: 260px;
  top: -90px;
  right: -80px;
}

.auth-brand::after {
  width: 180px;
  height: 180px;
  bottom: -70px;
  left: -60px;
  background: rgba(83, 188, 28, 0.25);
}

.auth-brand-content {
  position: relative;
  z-index: 1;
}

.auth-brand h2 {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
  color: #fff;
}

.auth-brand p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 26px;
  color: #fff;
}

.auth-brand-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.auth-brand-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 14px;
  opacity: 0.92;
  color: #fff;
}

.auth-brand-points i {
  color: var(--auth-green);
  background: rgba(255, 255, 255, 0.15);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.auth-form {
  flex: 1 1 55%;
  min-width: 300px;
  padding: 50px 45px;
}

.auth-form h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--auth-navy);
  margin-bottom: 6px;
}

.auth-form .auth-subtitle {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.auth-input-group {
  position: relative;
  margin-bottom: 18px;
}

.auth-input-group i.auth-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9aa4c2;
  font-size: 0.95rem;
  pointer-events: none;
}

.auth-input-group.has-toggle .form-control {
  padding-right: 44px;
}

.auth-password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  color: #9aa4c2;
  font-size: 0.95rem;
  cursor: pointer;
  line-height: 1;
}

.auth-password-toggle:hover {
  color: var(--auth-navy);
}

.auth-password-toggle:focus {
  outline: none;
}

.auth-input-group .form-control {
  height: 50px;
  padding-left: 44px;
  border-radius: 12px;
  border: 1px solid #e3e7f3;
  background: #f8f9fd;
  font-size: 0.92rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.auth-input-group .form-control:focus {
  border-color: var(--auth-green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(83, 188, 28, 0.15);
}

.auth-remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  font-size: 0.88rem;
}

.auth-submit-btn {
  height: 50px;
  border-radius: 12px;
  background: var(--auth-navy);
  border-color: var(--auth-navy);
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.15s ease, transform 0.1s ease;
}

.auth-submit-btn:hover {
  background: var(--auth-navy-dark);
  border-color: var(--auth-navy-dark);
}

.auth-submit-btn:active {
  transform: translateY(1px);
}

.auth-footer-links {
  text-align: center;
  margin-top: 20px;
}

.auth-footer-links a {
  color: var(--auth-green);
  font-weight: 600;
}

.auth-footer-links p {
  margin: 6px 0;
  font-size: 0.88rem;
  color: #6b7280;
}

.auth-form .alert {
  border-radius: 10px;
  font-size: 0.88rem;
}

@media (max-width: 767px) {
  .auth-brand {
    padding: 36px 30px;
  }

  .auth-form {
    padding: 36px 28px;
  }
}
