.header-log-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8980392157);
  transition: 0.3s all ease;
  text-decoration: none;
}
.btn-login:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-daftar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 36px;
  background-color: #fff;
  font-size: 15px;
  color: #161616;
  font-weight: 600;
  transition: 0.3s all ease;
  text-decoration: none;
}
.btn-daftar:hover {
  background-color: #EB4E12;
  color: #fff;
}

.header-lang-selector {
  display: flex;
  gap: 8px;
  padding: 14px;
  justify-content: space-between;
  align-items: center;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  width: 84px;
  height: 48px;
}
.header-lang-selector-flag {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 3px;
}
.header-lang-selector__dropdown {
  position: absolute;
  top: 88px;
  right: 40px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  background-color: #161616;
  z-index: 1;
}
.header-lang-selector__dropdown-item {
  display: flex;
  gap: 8px;
  padding: 14px;
  justify-content: space-between;
  align-items: center;
  font-family: "sora";
  font-size: 15px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #fff;
}
.header-lang-selector__dropdown.hidden {
  display: none;
}
@media (max-width: 900px) {
  .header-lang-selector {
    height: 44px;
  }
  .header-lang-selector__dropdown {
    right: 112px;
  }
}

@media (max-width: 900px) {
  .header-flag {
    display: none;
  }
}

/*# sourceMappingURL=header-buttons.css.map */
