header {
  width: 100%;
  height: 70px;
  background: #fff;
  border-bottom: 1px solid #dfdfdf;
  padding: 9px 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
}

header .logo {
  width: 153px;
  height: 51px;
  background: url(/img/logo/Property\ 1=sm.png) no-repeat;
  background-size: 100% auto;
}

header .login {
  width: 128px;
  height: 48px;
  padding: 12px 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: var(--Primary-100);
  color: var(--Secondary-100);
  font-family: Pretendard;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 162.5% */
}

@media (max-width: 1199px) {
  /* tablet 사이즈  */

  header {
    padding: 12px 24px;
  }
}

@media screen and (max-width: 743px) {
  /* mobile 사이즈  */
  header {
    padding: 12px 16px;
  }
}