/* scrollDown */
.scrollDown {
  position: fixed;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--main-font-color);
  display: flex;
  gap: 0.8rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.scrollDown p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7rem;
  text-align: center;
}

/* dia */
.dia-icon {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10rem 0 3.7rem 0;
}

/* 자동완성 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: #b3b3b3;
  -webkit-box-shadow: 0 0 0 1000px var(--background-color) inset;
  box-shadow: 0 0 0 1000px var(--background-color) inset;
  caret-color: #b3b3b3;
  /* border-color: var(--background-color); */
  background-clip: padding-box;
}
/* === Firefox === */
input:-moz-autofill,
input:-moz-autofill {
  box-shadow: inset 0 0 0 1000px var(--background-color);
  -moz-text-fill-color: #b3b3b3;
  caret-color: #b3b3b3;
  /* border-color: var(--background-color); */
}

@media (max-width: 768px) {
  .scrollDown {
    display: none;
  }
}
