* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.auth_inner_box.page_area, .auth_inner_box.page_area p{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;

}

main {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
  border: 2px solid #721d1c;
  margin: 10px;
  border-radius: 5px;
  min-height: 100vh;
}

h3 {
  text-transform: uppercase;
}
.head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.head div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.head button, .head .nbutton {
  padding: 10px 30px;
  background-color: #721d1c;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
}

.head img {
  width: 150px;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
ul {
  margin-left: 30px;
}

article {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (min-width: 1000px) {
  main {
    max-width: 900px;
    margin: auto;
  }
}


.page_area_main .shop_as_guest{
  top: -15px;
}

.page_area_main .shop_as_guest.small_area{
  top: -5px;
}