@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');

header {
  margin: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0f0f0f;
  box-shadow: 0 0 7px #000;
  padding: 5px 20px;
  height: 65px;
}

#header-left {
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#logo img {
  height: 55px;
  margin-right: 10px;
  cursor: pointer;
}

.header-title {
  font-family: 'Roboto', sans-serif;
  color: white;
  font-size: 2em;
}

#form-top {
  align-items: center;
  justify-content: space-between;
  position: relative;
  display: flex;
  margin-bottom: 0;
}

.searcharea {
  display: flex;
  align-items: center;
  position: relative;
  width: 450px;
}

.search-bar-top {
  color: #ffffff;
  font-size: 1.7em;
  width: 100%;
  height: 56px;
  border-radius: 0 10px 10px 0;
  background-color: #111112;
  border: none;
  padding-left: 10px;
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
}

.search-bar-top::placeholder {
  color: #ADB0B7;
}

.search-bar-top:focus {
  outline: none;
  border-color: transparent;
}

.search-enter-top {
  width: 56px;
  height: 56px;
  background-color: #111112;
  border: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.2s ease;
  font-size: 1.8em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0 0 10px;
}

.search-enter-top:hover {
  color: #4494FC;
}
