    
.login-page { 
    --accent: #0d9488;
    --accent-light: #e8f7f5;

    --page-bg: #ffffff;
    --card-bg: #ffffff;

    --text-color: #212529;
    --text-muted: #6b7280;

    --border-color: #edf2f7;
    --hover-border: #d7e5e4;

    padding: 2rem 1rem;
    background: var(--page-bg);
    color: var(--text-color);
}

[data-bs-theme="dark"] .login-page {
    --accent: #20c997;
    --accent-light: #163c38;

    --page-bg: #212121;
    --card-bg: #2c2c2c;
    --sidebar-bg: #000000;

    --text-color: #f8f9fa;
    --text-muted: #adb5bd;

    --border-color: #444;
    --hover-border: #666;
}

.login-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: url("../images/backgrounds/login.cba1b2292bcc.svg") no-repeat center center fixed;
    background-size: cover;
    overflow: auto;
    display: flex;
    flex-direction: column;
  }


  #content-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  padding: 0;
}

.login-form-container {
  width: 45%;
  padding: 40px;
}

.login-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  height: 100%;
}

.login-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 30px;
  width: 100%;
}

.login-logo {
  position: absolute;
  left: -70px;
  width: 140px;
  height: 140px;
}

.login-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-color);
  text-align: center;
}

.user-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B7C7C 0%, #2D9D78 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 3rem;
  margin-bottom: 30px;
  align-self: center;
}

.login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.input-group-custom {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 280px;
}

.input-icon {
  position: absolute;
  left: 15px;
  color: #999;
  font-size: 1rem;
  z-index: 1;
}

.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="email"],
.form-input {
  width: 100%;
  padding: 12px 12px 12px 45px;
  border: 2px solid #ddd;
  border-radius: 25px;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  background: white;
}

.form-input::placeholder {
  color: #999;
  font-weight: 500;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus,
.login-form input[type="email"]:focus,
.form-input:focus {
  border-color: var(--accent);
  outline: none;
}

.login-btn {
  border-radius: 25px;
  padding: 12px 30px;   
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 20px;
  background: linear-gradient(135deg, #1B7C7C 0%, #2D9D78 100%);
  border: none;
  text-transform: uppercase;
  width: 100%;
  max-width: 280px;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(27, 124, 124, 0.4);
}

.login-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 10px;
  color: #fff;
}



.forgot-password {
  color: #0731eb;
  text-decoration: none;
  font-weight: 500;
}

.forgot-password:hover {
  text-decoration: underline;
}

.login-form p {
  display: none;
}

.login-form ul {
  display: none;
}

.login-form .errorlist {
  display: block;
  color: #dc3545;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.login-form-container .bg-body-tertiary {
  height: 100%;
}

.welcome-container {
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: white;
  text-align: center;
}

.welcome-content h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.welcome-content p {
  font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Login Page */
@media (max-width: 1024px) {
  .login-form-container {
    width: 50%;
    padding: 30px;
  }

  .welcome-container {
    width: 50%;
    padding: 30px;
  }

  .welcome-content h1 {
    font-size: 3rem;
  }

  .welcome-content p {
    font-size: 1rem;
  }

  .login-logo {
    width: 100px;
    height: 100px;
    left: -50px;
  }
}

@media (max-width: 768px) {
  #content-wrapper {
    flex-direction: column-reverse;
  }

  .login-form-container {
    width: 100%;
    padding: 20px;
  }

  .welcome-container {
    width: 100%;
    padding: 10px;
    min-height: 200px;
  }

  .login-header {
    margin-bottom: 10px;
  }

  .login-logo {
    width: 100px;
    height: 100px;
    left: -40px;
  }

  .login-title {
    font-size: 1.5rem;
  }

  .user-avatar {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .input-group-custom {
    max-width: 100%;
  }

  .login-form input[type="text"],
  .login-form input[type="password"],
  .login-form input[type="email"],
  .form-input {
    padding: 10px 10px 10px 40px;
    font-size: 0.9rem;
  }

  .login-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    max-width: 100%;
  }

  .welcome-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .welcome-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
  }

  .login-footer {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .login-form-container {
    padding: 15px;
  }

  .welcome-container {
    padding: 5px;
    min-height: 120px;
  }

  .login-logo {
    width: 100px;
    height: 100px;
    left: -50px;
  }

  .login-title {
    font-size: 1.2rem;
  }

  .user-avatar {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .welcome-content h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }

  .welcome-content p {
    font-size: 0.85rem;
    margin-bottom: 0;
  }

  .login-form {
    gap: 12px;
  }

  .input-group-custom {
    max-width: 100%;
  }

  .login-footer {
    font-size: 0.75rem;
    gap: 5px;
  }
}
