@charset "UTF-8";
header {
  position: relative;
}

.bp-simple-page {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f5f7fb;
}

.bp-simple-page__header {
  background: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.25rem 1rem;
  height: 80px;
}

.bp-simple-page__logo {
  width: 270.55px;
  max-width: 100%;
  height: auto;
}

.bp-simple-page__logo-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.bp-simple-page__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.alert-messaging {
  display: none;
  z-index: 100;
  position: fixed;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--color-white);
  color: var(--color-grey7);
  border-radius: 20px;
  border-top: 12px solid var(--color-primary);
  padding: 10px 20px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.alert-messaging .message {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  max-width: 320px;
}
.alert-messaging .message::before {
  content: "!";
  width: 25px;
  height: 25px;
  color: var(--color-white);
  border-radius: 50%;
  margin-right: 5px;
  background-color: var(--color-red);
  position: relative;
  font-size: 17px !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
}
.alert-messaging.error {
  border-top-color: var(--color-red);
}
.alert-messaging.success {
  border-top-color: var(--color-green);
}
.alert-messaging.success .message::before {
  content: "✓";
  background-color: var(--color-white);
  color: var(--color-green);
  border: 3px solid var(--color-green);
  width: 25px;
  height: 25px;
  line-height: 1;
  padding: 4px;
  font-weight: 700;
}
.alert-messaging.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.alert-messaging .button-close {
  color: var(--color-primary);
  font-weight: 600;
  border: none;
  background: none;
  cursor: pointer;
  margin-top: 10px;
}
