*, *::before, *::after {
  box-sizing: border-box;
  font-family: 'Helvetica Neue', sans-serif;
}

:root {
  --primary: #0808BE;
  --gray: #ecf0f5;
  --light-gray: #f5f5f5;
  --background: #f9fafa;
  --text: #303439;
}

body {
  line-height: 1.42857143;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  background: var(--background);
  color: var(--text);
}

a {
  text-decoration: none;
}

.l-content {
  min-height: calc(100dvh - 210px);
}

.l-container {
  min-width: calc(1360px + 32px);
  max-width: calc(1360px + 32px);
  padding: 0 16px;
  width: 100%;
  margin: 0 auto;
}

.b-flex--center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.b-flex--between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.b-flex--start {
  display: flex;
  align-items: center;
  justify-content: start;
}

.b-flex--end {
  display: flex;
  align-items: center;
  justify-content: end;
}

.ais {
  align-items: start !important
}

.h100p {
  height: 100%;
}

.w100p {
  width: 100%;
}

.h100vh {
  height: 100vh;
}

.w100vw {
  width: 100vw;
}

.mt1 {
  margin-top: 1rem;
}
.mt2 {
  margin-top: 2rem;
}
.mb1 {
  margin-bottom: 1rem;
}
.mb2 {
  margin-bottom: 2rem;
}
.ml1 {
  margin-left: 1rem;
}
.ml2 {
  margin-left: 2rem;
}
.mr1 {
  margin-right: 1rem;
}
.mr2 {
  margin-right: 2rem;
}

.gap025 {
  gap: 0.25rem;
}
.gap05 {
  gap: 0.5rem;
}
.gap1 {
  gap: 1rem;
}
.gap2 {
  gap: 2rem;
}
.pt1 {
  padding-top: 1rem;
}
.pt2 {
  padding-top: 2rem;
}
.pb1 {
  padding-bottom: 1rem;
}
.pb2 {
  padding-bottom: 2rem;
}
.pl1 {
  padding-left: 1rem;
}
.pl2 {
  padding-left: 2rem;
}
.pr1 {
  padding-right: 1rem;
}
.pr2 {
  padding-right: 2rem;
}

.p4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.p5 {
  font-size: 14px;
  font-weight: 500;
}

.p6 {
  font-size: 14px;
  font-weight: 400;
}

.bg-auth-form {
  background-image: url("~assets/img/background.png");
  background-repeat: no-repeat;
  background-position-x: 45%;
  background-size: cover;
  min-height: 620px;
}