.login-main {
  background-color: #EFEFEF;
  position: relative;
  height: 100vh;
}

.login-main::after {
  background-image: url('../../images/vector/bglogin.svg');
  background-position: center;
  background-size: 75%;
  position: absolute;
  content: '';
  z-index: 1;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}

.login-main h1 .fixed-2 {
  font-size: 24px;
}

.login-main h1 .fixed-2 span {
  background-color: var(--primary);
  display: flex;
  line-height: 1;
  border-radius: 7.5px;
}

.login-main h1 {
  line-height: 1.75;
}

.login-main .form-switch {
  width: max-content;
}

.login-main .form-switch .form-check-label,
.login-main .form-switch .form-check-input {
  float: unset;
  margin: 0;
}

.form-switch .form-check-input {
  --bs-form-switch-bg: url('../../images/icons/circlee.svg');
  background-image: var(--bs-form-switch-bg);
}

.form-check-input:checked {
  background-color: var(--third);
  border-color: var(--third);
}

.form-check-input {
  width: 2.5em !important;
  height: 1.5rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/*  */

.tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-radius: 10px;
  position: relative;
  padding: 0 !important;
}

.tag-container input {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  padding: .5rem 1rem;
  font-size: 1.25rem;
  font-family: var(--ffm-thin);
}

.tag {
  background-color: #f0f0f0;
  border-radius: 12px;
  padding: 5px 10px 5px 35px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
}

.tag span {
  cursor: pointer;
  font-size: 35px;
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 2px;
  font-family: var(--ffm-thin);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.tag-input {
  border: none;
  outline: none;
  font-size: 14px;
  min-width: 80px;
}

.suggestions {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 15px;
  margin-top: 5px;
  width: 100%;
  max-height: 150px;
  overflow-y: auto;
  z-index: 10;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 5px 12px;
}

.suggestion-item {
  cursor: pointer;
  font-size: 16px;
  border-bottom: 1px solid #eee;
  padding: 7.5px;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background-color: #f0f0f0;
}

.selected-badge {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  background-color: #F5F5F5;
  color: #5A5A5A;
  padding: 6px 15px;
  border-radius: 20px;
  margin: 5px 2px;
  font-size: 16px;
  font-family: var(--ffm-thin);
}

.selected-badge .remove-btn {
  cursor: pointer;
  font-weight: bold;
  margin-right: 15px;
  font-size: 35px;
  display: flex;
  height: 10px;
  line-height: 8px;
}

.login-main .bootstrap-select .dropdown-menu {
  transform: none !important;
  top: auto !important;
  right: 0 !important;
  left: auto !important;
  bottom: 110% !important;
  border-radius: 15px;
  border: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  max-height: 15rem;
}

.login-main .bootstrap-select .dropdown-menu.inner {
  box-shadow: none !important;
  border-radius: 0;
}

.login-main .bootstrap-select .dropdown-menu .text {
  margin-right: 25px !important;
}

.login-main .bootstrap-select .dropdown-menu li {
  border-bottom: 1px solid #eee;
}

.login-main .bootstrap-select .dropdown-menu li:last-child {
  border-bottom: none;
}

.login-main .bootstrap-select .dropdown-menu li a {
  padding: 10px;
}

.login-main .bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
  display: flex;
  top: 0;
  bottom: 5px;
  align-items: center;
  justify-content: center;
}

.selected-options {
  max-height: 8rem;
  overflow-y: scroll;
}