@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans/DMSans-VariableFont_opsz_wght.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish/Mulish-VariableFont_wght.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nanum Gothic";
  src: url("../fonts/NanumGothic/NanumGothic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Nanum Gothic";
  src: url("../fonts/NanumGothic/NanumGothic-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Nanum Gothic";
  src: url("../fonts/NanumGothic/NanumGothic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Public Sans";
  src: url("../fonts/PublicSans/PublicSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans Italic";
  src: url("../fonts/PublicSans/PublicSans-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
/*
    455
    540
    576
    767
    768
    991
    992
    993
    1000
    1140
    1159
    1199
    1200
    1270
*/
html * {
  box-sizing: border-box;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background-color: #fff;
  font-size: 14px;
  color: #404041;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.wrapper {
  display: flex;
  width: 100%;
  height: 100px;
  min-height: 100vh;
}

.column {
  flex-basis: 50%;
  display: flex;
  align-items: center;
}

.column--bg {
  /* Change to absolute */
  background: url("/Versico/images/Versico-b2c-login-bg.jpg") no-repeat #fcc52b;
  background-position: top right;
  background-size: cover;
  color: #fff;
}

.column--content {
  justify-content: center;
}

.login-form {
  width: 100%;
  max-width: 460px;
  padding: 15px;
}

.brand-logo {
  width: 100%;
  max-width: 276px;
  text-align: center;
  margin: 0 auto 10px auto;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.intro h2 {
  font-weight: 800;
  font-style: normal;
  color: #231f1f;
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-top: 0;
  font-family: "Nanum Gothic", sans-serif;
}

.error > p {
  border-radius: 3px;
  background-color: red;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  padding: 18px;
  margin: 13px 0;
  text-align: center;
}

.entry-item {
  margin-bottom: 15px;
}

.entry-item label {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.56px;
  display: block;
  margin-bottom: 5px;
}

.entry-item input {
  font-size: 14px;
  border: none;
  padding: 14px 10px;
  line-height: 1;
  display: block;
  color: #343434;
  width: 100%;
  border-radius: 2px;
  background-color: #f0f0f0;
}

.entry-item input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #7e7e7e;
  opacity: 1;
}

.entry-item input::-moz-placeholder {
  /* Firefox 19+ */
  color: #7e7e7e;
  opacity: 1;
}

.entry-item input:-moz-placeholder {
  /* Firefox 18- */
  color: #7e7e7e;
  opacity: 1;
}

.entry-item input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #7e7e7e;
  opacity: 1;
}

.entry-item input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #7e7e7e;
  opacity: 1;
}

.entry-item input::placeholder {
  color: #7e7e7e;
  opacity: 1;
}

.rememberMe input[type=checkbox] {
  display: none;
}

.rememberMe {
  line-height: 17px;
  position: relative;
  margin-bottom: 10px;
}

.rememberMe label {
  font-size: 12px;
  text-transform: capitalize;
  letter-spacing: 0.48px;
  margin-left: 20px;
}

.rememberMe label:hover {
  cursor: pointer;
}

.rememberMe label:before {
  font-family: Material-Design-Iconic-Font;
  content: "\f279";
  color: #aaa;
  position: absolute;
  left: 0;
  font-size: 16px;
  font-weight: 400;
}

.rememberMe input:checked ~ label:before {
  content: "\f26a";
  color: #474747;
}

.buttons button {
  color: #fff;
  background-color: #fcc52b;
  border: 1px solid #fcc52b;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
  padding: 8px 40px 8px 40px;
  -webkit-appearance: none;
}

.buttons button:hover {
  color: #fff;
  background-color: #ffa800;
  border-color: #ffa800;
  cursor: pointer;
}

.signup__lower-links {
  text-align: left;
  margin: 12px 0;
}

.signup__lower-links > div {
  padding: 2px 0;
}

.signup__lower-links a:link,
.signup__lower-links a:visited {
  color: #000;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .column {
    flex-basis: 100%;
  }

  .column--bg {
    display: none;
  }

  .column--content {
    align-items: flex-start;
    padding-top: 35px;
  }

  .login-form {
    padding: 0 20px;
  }

  .brand-logo {
    max-width: 212px;
    margin: 0 auto 20px auto;
  }

  .intro h2 {
    font-size: 17px;
    margin-bottom: 25px;
  }
}