.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;
}