html {
  background-color: #FCFCFC;
}

body {
  width: 100%;
  margin: 0;
  font-family: "Pretendard", sans-serif;
}

.menu {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed; /* 상단에 붙이기 */
  top: 0px;
  left: 0px;
  z-index: 1; /* 앞으로 빼기, 이것은 숫자 무엇으로 설정해야 좋을까? */
  background-color: #FFFFFF;
}

.menu img {
  width: 153px;
  height: 51px;
}

.logo_image {
  margin-left: 400px;
}

.login_area {
  margin-right: 400px;
}

.login_button {
  width: 128px;
  height: 48px;
  background-color: #3692FF;
  color: #F3F4F6;
  font-size: 16px;
  line-height: 26px;
  vertical-align: middle;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.go_shopping {
  width: 100%;
  height: 540px;
  margin-top: 70px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #CFE5FF;
}

.go_shopping_content {
  margin: 200px 0 0;
  display: flex;
}

.go_shopping_text {
  font-size: 40px;
  font-weight: 700;
  line-height: 140%;
  vertical-align: middle;
  color: #374151;
  margin: 32px 0;
}

.go_shopping_button {
  width: 100%;
  height: 100%;
  max-width: 357px;
  max-height: 56px;
  background-color: #3692FF;
  color: #F9FAFB;
  font-size: 20px;
  line-height: 32px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
}

.main_menu {
  width: 100%;
  height: 2160px;
}

.sub_menu {
  width: 100%;
  height: 720px;
  /* 각 이미지의 위치 : div로 나눈 구역의 중간에 있으므로 */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
}

.hot_item {
  display: flex;
  width: 100%;
  max-width: 988px;
  height: 444px;
  background-color: #FCFCFC;
}

.hot_item img {
  margin: 0 0 0 23.5px;
  width: 100%;
  height: auto;
  max-width: 579px; /* 원래 이미지 최대 크기 제한 */
}

.hot_item .sub_menu_area {
  margin: 0 0 0 64px;
}

.sub_menu_title {
  margin: 0 0 12px;
  height: 26px;
  color: #3692FF;
  font-family: 'Abhaya Libre ExtraBold';
  font-weight: 800;
  font-size: 18px;
  line-height: 26px;
  vertical-align: middle;
}

.sub_menu_info {
  margin: 0 0 24px 0;
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
  letter-spacing: 2%;
  vertical-align: middle;
  color: #374151;
}

.search {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  max-width: 988px;
  height: 444px;
  background-color: #FCFCFC;
}

.search img {
  margin: 0 14px 0 0;
  width: 100%;
  height: auto;
  max-width: 579px; /* 원래 이미지 최대 크기 제한 */
}

.search p {
  text-align: right;
}

.search .sub_menu_area {
  margin: 0 64px 0 0;
}

.register {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 988px;
  height: 444px;
  background-color: #FCFCFC;
}

.register img {
  width: 100%;
  height: auto;
  max-width: 579px; /* 원래 이미지 최대 크기 제한 */
}

.register .sub_menu_area {
  margin: 0 0 0 64px;
}

.sub_menu_area {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub_menu_text {
  margin: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #374151;
}

.summary_menu {
  width: 100%;
  height: 540px;
  display: flex;
  justify-content: center;
  background-color: #CFE5FF;
}

.summary_menu_info {
  width: 1110px;
  display: flex;
  margin: 143px 0 0;
  justify-content: space-between;
  align-items: center;
}

.summary_menu_text {
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
  letter-spacing: 0%;
  vertical-align: middle;
}

footer {
  width: 100%;
  height: 160px;
  background-color: #111827;
}

.footer_info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1120px;
  padding: 32px 16px 0;
  margin: 0 auto;
  box-sizing: border-box; /* 반응형 */
}

.copyright {
  color: #9CA3AF;
}

.policy {
  display: flex;
  gap: 30px;
}

.sns {
  display: flex;
  gap: 12px;
}

a:link {
  color: #E5E7EB;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 1919px) {
  .logo_image {
    margin-left: 200px;
  }
  
  .login_area {
    margin-right: 200px;
  }

  .login_button {
    font-size: 14px;
  }
}

/* 심화 PART 요소 반응형 */
@media (max-width: 800px) {
  .login_button {
    font-size: 20px;
  }

  .go_shopping_text {
    font-size: 12px;
    font-weight: 700;
    line-height: 140%;
    vertical-align: middle;
    color: #374151;
    margin: 32px 0;
  }

  .go_shopping_img img {
    width: 70%;
    height: auto;
  }
}

.login-page {
  height: 100vh;
  margin-top: 231px;
  display: flex;
  justify-content: center;
}

.login-container {
  width: 640px;
  height: 618px;
}

.login-signup-main-logo {
  width: 396px;
  height: 132px;
  margin: 0 auto;
}

.login-content {
  height: 446px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.member-info {
  margin: 0;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.member-info p {
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
}

.member-info input {
  height: 56px;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  line-height: 0%;
  padding: 0px 24px;
  border: 0px;
  border-radius: 12px;
  gap: 10px;
  color: #1F2937;
  background-color: #F3F4F6;
}

.login-password {
  position: relative;
}

.member-info .eyes {
  height: 24px;
  position: absolute;
  top: 58px;
  bottom: 0;
  right: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.go-login button {
  width: 100%;
  height: 56px;
  border-radius: 40px;
  padding: 16px 124px;
  gap: 10px;
  border: 0px;
  background-color: #3692FF;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0%;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #F3F4F6;
}

.social-login {
  width: 100%;
  height: 74px;
  border-radius: 8px;
  gap: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E6F2FF;
}

.social-login-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 23px;
  vertical-align: middle;
  font-weight: 500;
  height: 26px;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #1F2937;
}

.social-login-text {
  height: 26px;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  vertical-align:middle;
  color: #1F2937;
}

.social-login-img {
  width: 100px;
  height: 42px;
  display: flex;
  justify-content: space-between;
}

.go-signup {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  margin: 0;
  text-align: center;
}

.go-signup a {
  color: #3692FF;
  text-decoration: underline;
}

.signup-page {
  height: 100vh;
  margin-top: 231px;
  display: flex;
  justify-content: center;
}

.signup-container {
  width: 640px;
  height: 857px;
}

.signup-content {
  margin-top: 40px;
  height: 685px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.signup-member-info {
  height: 539px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
}

.signup-member-info p {
  margin: 0;
  height: 26px;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #1F2937;
}

.signup-member-info input {
  margin-top: 16px;
  padding-left: 24px;
  width: 100%;
  box-sizing: border-box;
  border: 0px;
  border-radius: 12px;
  gap: 10px;
  background-color: #F3F4F6;
  height: 56px;
  font-weight: 400;
  font-size: 16px;
  line-height: 0%;
}

.login-password,
.login-password-valid {
  position: relative;
}

.login-password .eyes,
.login-password-valid .eyes {
  height: 24px;
  position: absolute;
  top: 58px;
  bottom: 0;
  right: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.btn-go-signup button {
  width: 100%;
  height: 56px;
  border-radius: 40px;
  padding: 16px 124px;
  border: 0px;
  background-color: #3692FF;
  vertical-align: middle;
  color: #F3F4F6;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.go-login-page {
  text-align: center;
}

.go-login-page a {
  color:#3692FF;
  text-decoration: underline;
}
