h2,p,label {
  margin: 0;
}

h2,label {
  font-family: adobe-caslon-pro, serif;
}

p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
}

input[type="text"]:focus,
input[type="password"]:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.dealer-container {
  background: linear-gradient(#ffffff, #8b20561f);
  height: 100vh;
}

.logo-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 150px;
}

.login-container {
  background: #fff;
/*  width: 80%;*/
  width: 40%;
  max-width: 600px;
/*  margin: 50px auto;*/
  margin: 80px 70px;
  padding: 30px 0;
}

.login-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 75%;
  margin: auto;
}

.login-box h2,
.login-box label {
  font-family: adobe-caslon-pro, serif;
}

.login-box label {
  color: #6c5d36;
}

.login-title-parts {
  text-align: center;
}

.login-button {
  background: #afa991;
  border-radius: 30px;
  width: 100%;
  margin: 20px auto;
  font-weight: normal;
}

.login-help-parts {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-pass {
  position: relative;
}

#user_pass {
  padding-right: 40px;
}

.pass-hide {
  display: flex;
  align-items: center;
  color: #6c5d36;
  font-size: 20px;
  line-height: 2;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 40px;
  min-height: 40px;
  margin: 0;
  padding: 5px 9px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: .3s;
}

.pass-hide:hover {
  opacity: .7;
}

.show-icon::after {
  font-family: "Font Awesome 5 Free";
  content: "\f06e";
  font-weight: 900;
}

.hide-icon::after {
  font-family: "Font Awesome 5 Free";
  content: "\f070";
  font-weight: 900;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a24d77 !important;
    border: solid 2px #a24d77;
    text-align: center;
    width: 100%;
    border-radius: 30px;
    padding: 15px 10px;
    margin: 20px auto 0 auto;
    transition: 0.3s;
}

.order-box{
   display: block;
   height: auto;
   margin-bottom: 30px;
}
.cart-icon-b::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(../images/icons/cart-icon-b.png) no-repeat;
    background-size: contain;
    background-position-x: -2px;
}
.order-help-parts{
  text-align: left;
}
.text-center{
  text-align: center;
}
.login-inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


@media only screen and (max-width: 1418px) {
  .login-container {
    margin: 80px auto;
  }
}

@media only screen and (max-width: 780px) {
  button[type="submit"] {
    width: 100%;
}
  .login-container {
    width: 95%;
  }
  .login-box {
    width: 85%;
  }
.dealer-container {
    height: auto;
}

}
/*@media only screen and (max-width: 428px) {
  .login-container {
    width: 95%;
  }
  .login-box {
    width: 85%;
  }
}
*/