.home4-slide-content .title{
  width: 60%;
}

/* User account hover dropdown */
.header-login--dropdown {
  position: relative;
}

.header-login__menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  padding: 10px 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 999;
}

.header-login--dropdown:hover .header-login__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.form-control:disabled {
    background-color: var(--bs-secondary-bg) !important;
}
.header-login__menu a {
  display: flex;
  align-items: center;
  padding: 8px 20px;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-login__menu a:hover {
  background: #f5f5f5;
  color: #f8796c;
}

.header-login__menu a i {
  width: 20px;
  margin-right: 10px;
  font-size: 14px !important;
  line-height: 1 !important;
  text-align: center;
}