/* Logo size */
.login-logo img.img-fluid {
  width: 150px;
}

/* Login page title styling */
.login-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-text); /* Ensure this variable is defined */
}

/* Input group with icon */
.login-form-group {
  position: relative;
  margin-bottom: 25px;
}

/* Input field styles */
.login-input {
  background-color: var(--primary-bg);
  border: none;
  padding: 12px 15px;
  padding-left: 45px;
  width: 100%;
  font-size: 16px;
  border-bottom: 3px solid var(--primary-text);
  border-radius: 4px;
}

/* Icon inside input */
.input-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--black-text);
}

/* Input focus state */
.login-input:focus {
  outline: none;
  background-color: #e3edf8;
  border-bottom: 3px solid var(--primary-text);
  box-shadow: none;
}

/* Forgot password text */
.forgot-password {
  font-size: 14px;
  text-align: right;
  margin-top: -10px;
  margin-bottom: 20px;
}

.forgot-password a {
  text-decoration: none;
  color: var(--black-text);
}

/* Login button */
.login-btn {
  background-color: var(--primary-text);
  color: #fff;
  font-weight: 600;
  padding: 10px;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.login-btn:hover {
  background-color: #007bb3;
  color: #fff;
}

/* Signup text section */
.signup-text {
  margin-top: 25px;
  font-size: 14px;
  color: #bbb;
}

.signup-text a {
  color: var(--black-text);
  text-decoration: none;
  font-weight: 500;
}

.signup-text a:hover {
  text-decoration: underline;
}
