@import "css-style/vendors/bootstrap.min.css";
* {
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  width: auto;
  height: auto;
  display: block;
}

body {
  position: relative;
}

body,
html {
  overflow-x: hidden !important;
  font-family: "Untitled Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 22px;
  letter-spacing: 0em;
  color: #000000;
}

a {
  display: inline-block;
  color: #FFD773;
  outline: none;
  text-decoration: none;
  border-color: inherit;
  transition: all 0.2s ease-in-out;
}
a:hover {
  color: #FFD773;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
a:focus {
  outline: none;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
a:visited {
  outline: none;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

p.tag {
  display: inline-block;
  font-family: "Untitled Sans";
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  background: #f1f1f1;
  border-radius: 5px;
  color: #000000;
  padding: 4px 16px;
  margin-bottom: 26px;
}
@media (max-width: 767px) {
  p.tag {
    margin-bottom: 24px;
  }
}
p a:hover {
  text-decoration: underline;
  opacity: 0.7;
}

.h1,
h1 {
  font-family: "Untitled Sans";
  font-size: 32px;
  font-style: normal;
  color: #141c31;
  font-weight: 500;
  line-height: 43px;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
@media (max-width: 1200px) {
  .h1,
  h1 {
    font-size: 28px;
    line-height: 1.3;
  }
}
@media (max-width: 992px) {
  .h1,
  h1 {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .h1,
  h1 {
    font-size: 23.6px;
    line-height: 1.35;
  }
  .h1 br,
  h1 br {
    display: none;
  }
}

.h2,
h2 {
  font-size: 37px;
  font-weight: bold;
  margin-bottom: 36px;
  color: #FFD773;
}

.orange h2 {
  color: #ffffff;
}

.h3,
h3 {
  font-size: 17px;
  line-height: 1.3333333333;
}

.h4,
h4 {
  font-size: 1.375rem;
  line-height: 1.3333333333;
}

.h5,
h5 {
  font-size: 1.25rem;
  line-height: 1.3333333333;
}

.h6,
h6 {
  font-size: 1.125rem;
  line-height: 1.3333333333;
}

ul > li {
  position: relative;
  padding-left: 27px;
}
ul > li::before {
  display: inline-block;
  content: "";
  width: 9px;
  height: 9px;
  background-color: #FFD773;
  transform-origin: center;
  position: absolute;
  top: 6px;
  left: 15px;
}

ol {
  counter-reset: count;
}
ol > li::before {
  counter-increment: count;
  content: counter(count) ".";
  color: #FFD773;
  margin-right: 12px;
  width: 12px;
  display: inline-block;
}

ol,
ul {
  list-style-type: none;
  padding-left: 5px;
}
b,
strong {
  font-weight: bold;
}

p {
  color: #000000;
  font-family: "Untitled Sans";
}
p strong {
  font-family: "Untitled Sans";
}

button {
  outline: none;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border: none;
  background-color: transparent;
}
button:hover {
  cursor: pointer;
  outline: none;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
button:focus {
  outline: none;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
button:visited {
  outline: none;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

button,
input:not([type=checkbox]):not([type=radio]),
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button,
input[type=checkbox],
input[type=radio],
input[type=submit] {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

input {
  transition: all 0.2s;
  outline: none;
}
input::-webkit-input-placeholder {
  font-family: "Untitled Sans";
  color: rgba(0, 0, 0, 0.25);
}
input:-moz-placeholder {
  font-family: "Untitled Sans";
  color: rgba(0, 0, 0, 0.25);
}
input::-moz-placeholder {
  font-family: "Untitled Sans";
  color: rgba(0, 0, 0, 0.25);
}
input:-ms-input-placeholder {
  font-family: "Untitled Sans";
  color: rgba(0, 0, 0, 0.25);
}
input:focus {
  border-color: #FFD773;
}
input[type=text], input[type=date], input[type=tel] {
  background-color: #ffffff;
}

textarea {
  transition: all 0.2s;
  border: 1px solid #b0b0b0;
  border-radius: 5px;
  height: 120px;
  outline: none;
  width: 100%;
  padding: 8px 20px;
  font-size: 13px;
  resize: none;
  color: #000000;
  font-family: "Untitled Sans";
}
textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: 13px;
  font-family: "Untitled Sans";
}
textarea:-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: 13px;
  font-family: "Untitled Sans";
}
textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: 13px;
  font-family: "Untitled Sans";
}
textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: 13px;
  font-family: "Untitled Sans";
}
textarea:focus {
  border-color: #FFD773;
}

.slider {
  touch-action: auto !important;
}

.slick-slider {
  -moz-user-select: text;
  cursor: auto !important;
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
}
.slick-slider .slick-list {
  height: 100%;
}
.slick-slider .slick-list .slick-track {
  height: 100%;
}
.slick-slider .slick-list .slick-track .slick-slide {
  height: 100%;
}
.slick-slider .slick-list .slick-track .slick-slide > div {
  height: 100%;
}

.img-c div,
.bg-box div {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body {
  background: #FFF3E9;
}
@media (max-width: 767px) {
  body {
    margin-bottom: 60px;
  }
}

.sitemap h3 {
  font-size: 20px;
}
.sitemap h3 a {
  color: #000000;
}
.sitemap h3 a:hover {
  color: #FFD773;
}

.navigation-point {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 71px;
}
@media (max-width: 1200px) {
  .navigation-point {
    bottom: 51px;
  }
}
@media (max-width: 992px) {
  .navigation-point {
    bottom: 41px;
  }
}
@media (max-width: 767px) {
  .navigation-point {
    position: fixed;
    bottom: 0;
    background: #ffffff;
    z-index: 99;
    padding: 24px 15px 26px 15px;
  }
}
.navigation-point ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.navigation-point ul li {
  width: 9.6px;
  height: 9.6px;
  background: #e0e0e0;
  border-radius: 30px;
  margin: 3px 4.5px;
  padding: 0;
}
.navigation-point ul li:before {
  display: none;
}
.navigation-point ul li.active {
  width: 17.6px;
  background: #FFD773;
}
.navigation-point .back {
  font-family: "Untitled Sans";
  font-size: 16px;
  font-style: normal;
  line-height: 22px;
  letter-spacing: 0em;
  background: none;
  border: solid 1px #d5d8e0;
  border-radius: 5px;
  color: #000000;
  transition: all 0.2s;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 125px;
  transform: translate(0, -50%);
  padding: 6px 26px 6px 41px;
}
@media (max-width: 767px) {
  .navigation-point .back {
    left: 15px;
    padding: 3px 19px 3px 38px;
  }
}
.navigation-point .back:before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("../images/Back.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  pointer-events: none;
  left: 25px;
  transform: translate(0, -50%);
  z-index: 1;
}
@media (max-width: 767px) {
  .navigation-point .back:before {
    left: 19px;
  }
}
.navigation-point .back:hover {
  opacity: 0.7;
}
.navigation-point .next {
  font-family: "Untitled Sans";
  font-size: 16px;
  font-style: normal;
  line-height: 22px;
  letter-spacing: 0em;
  background: linear-gradient(270deg, rgba(255, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%), #FFD773;
  border: solid 1px #FFD773;
  border-radius: 5px;
  color: #ffffff;
  transition: all 0.2s;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 125px;
  transform: translate(0, -50%);
  padding: 6px 45px 6px 23px;
}
@media (max-width: 767px) {
  .navigation-point .next {
    right: 15px;
  }
}
@media (max-width: 767px) {
  .navigation-point .next {
    padding: 3px 40px 3px 19px;
  }
}
.navigation-point .next:before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  pointer-events: none;
  right: 26px;
  transform: translate(0, -50%);
  z-index: 1;
}
@media (max-width: 767px) {
  .navigation-point .next:before {
    right: 19px;
  }
}
.navigation-point .next:hover {
  opacity: 0.7;
}
.navigation-point .next.disabled {
  cursor: no-drop;
  background: #cecece;
  border: solid 1px #cecece;
  opacity: 1;
}
.navigation-point .reject-plan {
  font-family: "Untitled Sans";
  font-size: 16px;
  font-style: normal;
  line-height: 22px;
  letter-spacing: 0em;
  background: linear-gradient(270deg, rgba(255, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%), #FFD773;
  border-radius: 5px;
  color: #ffffff;
  transition: all 0.2s;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 125px;
  transform: translate(0, -50%);
  padding: 6px 23px;
}
@media (max-width: 767px) {
  .navigation-point .reject-plan {
    left: 15px;
    padding: 3px 10px 3px 10px;
  }
}
.navigation-point .reject-plan:hover {
  opacity: 0.7;
}

main.email-one + .navigation-point {
  bottom: 50px;
  pointer-events: none;
}
@media (max-width: 767px) {
  main.email-one + .navigation-point {
    pointer-events: inherit;
    bottom: 0;
  }
}

input[type=radio] {
  color: #000000;
  padding: 10px 10px;
  outline: none;
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 50%;
  box-shadow: none;
}
input[type=radio]:focus {
  border-color: #FFD773;
  outline: none;
  box-shadow: none;
}

.radio-value {
  font-size: 10px;
}

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}

.code-input {
  font-size: 22px;
  letter-spacing: 15px;
  overflow-x: hidden;
  width: 195px;
  margin: auto;
}

.code-input-wrapper {
  margin-top: 0;
  margin-bottom: 5px;
  height: 35px;
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ok:before {
  content: "\e72f";
}

.icon-close:before {
  content: "\e730";
}

.password-limitations {
  display: flex;
  color: #f0242b;
  border-color: #fff7b4;
  background-color: #fff7b4;
  text-align: initial;
  padding: 10px;
  font-size: 0.8rem;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.25));
}
.password-limitations .password-limitation {
  display: flex;
}
.password-limitations .password-limitation span:first-child {
  color: #FF0004;
}
.password-limitations .password-limitation span:last-child {
  padding-left: 10px;
}
.password-limitations .pw-accepted {
  color: #00A41E !important;
}
.password-limitations .pw-rejected {
  color: #FF0004 !important;
}
.password-limitations img {
  margin-right: 10px;
}
.password-limitations #passwordUserMessage {
  font-weight: bold;
}

.icon__info:before {
  content: "\e911";
}

.icon__info {
  font-size: 22px;
  vertical-align: bottom;
  margin-right: 10px;
}

.resetPasswordForm .form-group:has(input[id=password1]) {
  display: inline-block;
  width: 100%;
}

.resetPasswordForm .password {
  display: none;
}

.acceptMerchantInvite .password {
  display: none;
}

.joinPayleadr .password {
  display: none;
}

@font-face {
  font-family: "Untitled Sans";
  src: url("../fonts/UntitledSans-Medium.eot");
  src: local("Untitled Sans Medium"), local("UntitledSans-Medium"), url("../fonts/UntitledSans-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/UntitledSans-Medium.woff2") format("woff2"), url("../fonts/UntitledSans-Medium.woff") format("woff"), url("../fonts/UntitledSans-Medium.ttf") format("truetype"), url("../fonts/UntitledSans-Medium.svg#UntitledSans-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Untitled Sans";
  src: url("../fonts/UntitledSans-Regular.eot");
  src: local("Untitled Sans"), local("UntitledSans-Regular"), url("../fonts/UntitledSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/UntitledSans-Regular.woff2") format("woff2"), url("../fonts/UntitledSans-Regular.woff") format("woff"), url("../fonts/UntitledSans-Regular.ttf") format("truetype"), url("../fonts/UntitledSans-Regular.svg#UntitledSans-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Untitled Sans";
  src: url("../fonts/UntitledSans-Bold.eot");
  src: local("Untitled Sans Bold"), local("UntitledSans-Bold"), url("../fonts/UntitledSans-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/UntitledSans-Bold.woff2") format("woff2"), url("../fonts/UntitledSans-Bold.woff") format("woff"), url("../fonts/UntitledSans-Bold.ttf") format("truetype"), url("../fonts/UntitledSans-Bold.svg#UntitledSans-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Untitled Sans";
  src: url("../fonts/UntitledSans-Light.eot");
  src: local("Untitled Sans Light"), local("UntitledSans-Light"), url("../fonts/UntitledSans-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/UntitledSans-Light.woff2") format("woff2"), url("../fonts/UntitledSans-Light.woff") format("woff"), url("../fonts/UntitledSans-Light.ttf") format("truetype"), url("../fonts/UntitledSans-Light.svg#UntitledSans-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "iconfont";
  src: url("iconfont.eot?t=1589958678575");
  /* IE9 */
  src: url("iconfont.eot?t=1589958678575#iefix") format("embedded-opentype"), url("data:application/x-font-woff2;charset=utf-8;base64,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") format("woff2"), url("iconfont.woff?t=1589958678575") format("woff"), url("iconfont.ttf?t=1589958678575") format("truetype"), url("iconfont.svg?t=1589958678575#iconfont") format("svg");
  /* iOS 4.1- */
}
@font-face {
  font-family: "icomoon";
  src: url("../../icomoon/fonts/icomoon.eot?c6gufg");
  src: url("../../icomoon/fonts/icomoon.eot?c6gufg#iefix") format("embedded-opentype"), url("../../icomoon/fonts/icomoon.ttf?c6gufg") format("truetype"), url("../../icomoon/fonts/icomoon.woff?c6gufg") format("woff"), url("../../icomoon/fonts/icomoon.svg?c6gufg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon__], [class*=" icon__"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.reset-user-table {
  max-width: 600px;
  margin: auto;
  border: 1px solid #e0e0e0;
  background-color: #f6f6f6;
  border-radius: 4px;
  box-shadow: 5px 5px #f6f6f6;
  max-height: 50vh;
  overflow-y: hidden;
}
.reset-user-table table {
  max-width: 600px;
  width: 100%;
  position: relative;
}
.reset-user-table tr:not(:last-child) {
  border-bottom: #fff 2px solid;
}
.reset-user-table .btn {
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.25));
  display: block;
  width: 100%;
  border: 1px solid #fff7b4;
  background: #fff7b4;
  border-radius: 5px;
  color: #000000;
  font-family: "Untitled Sans";
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  padding: 10.5px 10px;
}
.reset-user-table .btn:hover {
  background-color: #FFD773;
  border-color: #FFD773;
}
.reset-user-table td {
  padding: 15px 20px 15px 20px;
  border-right: none;
  width: 100%;
}
.reset-user-table td .full-name {
  font-size: 18px;
  font-weight: bold;
}
.reset-user-table td .sub-details {
  font-size: 12px;
}
.reset-user-table:hover {
  overflow: auto;
  padding-right: 1px;
}
.table__content {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}
.table__content tbody tr:hover {
  background-color: rgba(147, 189, 59, 0.05);
}
.table__content th {
  min-width: 100px;
}
.table__content td {
  min-width: 100px;
}

.tooltip {
  position: absolute;
  z-index: 20;
  display: block;
  margin: 0;
  font-size: 0.75rem;
  word-wrap: break-word;
  opacity: 1;
}
.tooltip .tooltip__arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip__arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.tooltip--top {
  padding: 0.4rem 0;
  top: 0;
  left: -0.4rem;
  right: unset;
  transform: translateY(calc(-100% - 0.1rem));
}
@media (max-width: 675px) {
  .tooltip--top {
    right: -0.4rem;
    left: unset;
  }
}
.tooltip--top .tooltip__arrow {
  bottom: 0;
  left: 10px;
  right: unset;
}
@media (max-width: 675px) {
  .tooltip--top .tooltip__arrow {
    right: 8px;
    left: unset;
  }
}
.tooltip--top .tooltip__arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.tooltip--right {
  padding: 0 0.4rem;
  top: calc(100% - 1.5rem);
  left: calc(100% - 0.5rem);
}
.tooltip--right .tooltip__arrow {
  left: 0;
  top: 0.4rem;
  width: 0.4rem;
  height: 0.8rem;
}
.tooltip--right .tooltip__arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.tooltip--bottom {
  padding: 0.4rem 0;
  bottom: 0;
  left: -0.4rem;
  transform: translateY(calc(100% + 0.1rem));
}
.tooltip--bottom .tooltip__arrow {
  top: 0;
  left: 10px;
}
.tooltip--bottom .tooltip__arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.tooltip--left {
  padding: 0 0.4rem;
  top: calc(100% - 1.4rem);
  right: 100%;
}
.tooltip--left .tooltip__arrow {
  right: 0;
  top: 0.4rem;
  width: 0.4rem;
  height: 0.8rem;
}
.tooltip--left .tooltip__arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}
.tooltip--left .tooltip__inner {
  padding: 0.35rem 0.5rem;
}

.tooltip__inner {
  width: 170px;
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

.jumbotron__line--right {
  margin-left: 96%;
  margin-top: -50px;
}

.form__tooltip {
  position: absolute;
  margin-left: 15px;
  margin-top: 8px;
  color: #090203;
  display: inline-block;
  font-size: 17px;
  line-height: 21px;
  vertical-align: middle;
}
.form__tooltip span {
  display: block;
}
.form__tooltip:hover {
  color: #ffd773;
}

.form__loading::before {
  z-index: 2;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFFFFF;
  opacity: 0.7;
}

.form__loading::after {
  z-index: 2;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  border-style: solid;
  border-radius: 99999px;
  border-left-color: transparent;
  animation: rotate 450ms linear 0ms infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100vh;
  background: url(../../../../../../assets/merchant/mask-aglow-02.png) top center no-repeat transparent;
  background-size: cover;
}
.wrapper > * {
  width: 100%;
}
.wrapper header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 78px 0 40px;
}
@media (max-width: 1199px) {
  .wrapper header {
    padding: 40px 0;
  }
}
@media (max-width: 575px) {
  .wrapper header {
    padding: 24px 0;
  }
}
.wrapper header .brand:first-child {
  margin: 0;
  transform: none;
}
.wrapper header .brand:first-child img {
  display: block;
  width: 155px;
}
@media (max-width: 767px) {
  .wrapper header .brand:first-child img {
    width: 108.5px;
  }
}
.wrapper header .brand:last-child {
  margin-left: 33px;
  padding-bottom: 4px;
}
@media (max-width: 1199px) {
  .wrapper header .brand:last-child {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .wrapper header .brand:last-child {
    margin-left: 24px;
  }
}
.wrapper header .brand:last-child img {
  display: block;
  width: 163px;
}
@media (max-width: 767px) {
  .wrapper header .brand:last-child img {
    width: 114.1px;
  }
}
.wrapper .login {
  flex: 1;
  padding-top: 114px;
  padding-bottom: 114px;
}
@media (max-width: 1199px) {
  .wrapper .login {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .wrapper .login {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .wrapper .login {
    padding: 60px 0;
  }
}
.wrapper .login .content {
  max-width: 305px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 575px) {
  .wrapper .login .content {
    max-width: 290px;
  }
}
.wrapper .login h1 {
  font-family: "Untitled Sans";
  text-align: center;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 33px;
  margin-bottom: 39px;
  color: #000000;
}
.wrapper .login form {
  display: block;
}
.wrapper .login .form-group {
  margin-bottom: 23px;
}
.wrapper .login label {
  display: block;
  font-family: "Untitled Sans";
  font-weight: 500;
  font-size: 15px;
  line-height: 19px;
  margin-bottom: 8px;
  color: #000000;
}
.wrapper .login input:not([type=radio]) {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #000000;
  padding: 6px 10px;
  outline: none;
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 5px;
  box-shadow: none;
}
.wrapper .login input:not([type=radio]):focus {
  border-color: #FFD773;
  outline: none;
  box-shadow: none;
}
.wrapper .login .submit-block {
  padding-top: 13px;
  width: 100%;
}
.wrapper .login .submit-block .btn.btn-primary {
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.25));
  display: block;
  width: 100%;
  border: 1px solid #fff7b4;
  background: #fff7b4;
  border-radius: 5px;
  color: #000000;
  font-family: "Untitled Sans";
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  padding: 10.5px 10px;
}
.wrapper .login .submit-block .btn.btn-primary:hover {
  background-color: #FFD773;
  border-color: #FFD773;
}
.wrapper .login .forgot-password {
  margin-bottom: 0;
  margin-top: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wrapper .login .forgot-password a {
  font-family: "Untitled Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
  position: relative;
  display: block;
}
.wrapper .login .forgot-password a::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 100%;
  background-color: currentColor;
}
.wrapper .login .forgot-password a:hover {
  color: #FFD773;
  border-color: #FFD773;
}
.wrapper footer.footer {
  position: static;
  text-align: center;
  padding-bottom: 19px;
}
.wrapper footer.footer p {
  font-family: "Untitled Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  color: #000000;
  margin-bottom: 0;
}
.wrapper footer.footer p a {
  color: inherit;
  text-decoration: underline;
}
.wrapper footer.footer p a:hover {
  color: #FFD773;
}/*# sourceMappingURL=style.css.map */