:root {
  --blue: #1b84ff;
  --white: #ffffff;
  --bs-gray-300: #dbdfe9;
  --bs-gray-500: #99a1b7;
  --bs-gray-900: #071437;
  --bg-primary: #1b84ff;
  --bs-btn-hover-bg: #3d96ff;
  --bs-danger: #f8285a;
}
body {
  background: var(--white);
  box-sizing: border-box;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.d-flex {
  display: flex;
}
/* flex */
.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-1 {
  flex: 1; /* Make all items take equal width */
}

.flex-column-fluid {
  flex: 1 auto;
}

.justify-center {
  justify-content: center;
}
.items-center {
  align-items: center;
}

.w-100 {
  width: 100%;
}

.text-align-center {
  text-align: center;
}
/* font weight */
.fw-semibold {
  font-weight: 600;
}
.fw-normal {
  font-weight: 500;
}
/* colors */
.text-white {
  color: var(--white);
}
.text-gray-300 {
  color: var(--bs-gray-300);
}
.text-gray-500 {
  color: var(--bs-gray-500);
}
.text-gray-900 {
  color: var(--bs-gray-900);
}
.text-error {
  color: var(--bs-danger);
}
/* font-size */
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-base {
  font-size: 1rem; /* 16px */
  line-height: 1.5rem; /* 24px */
}
.text-lg {
  font-size: 1.125rem; /* 18px */
  line-height: 1.75rem; /* 28px */
}

.login-form-control {
  width: 100%;
  font-size: 12px !important;
  line-height: 1.5;
  border: 0.5px solid var(--bs-gray-300);
  border-radius: 0.75rem;
  font-weight: 600;
  padding: 1.5rem 1rem !important;
}
.login-form-control:hover {
  background-color: var(--white);
}
.btn-login {
  width: 100%;
  background-color: var(--bg-primary);
  border-radius: 0.75rem;
  color: var(--white);
  font-size: 1.1rem;
  padding: 0.8rem 1rem !important;
  line-height: 1.5;
  font-weight: 600;
}
.btn-login:hover {
  color: var(--white);
  /* opacity: 0.8; */
  background-color: var(--bs-btn-hover-bg);
}

.right-section-bg {
  background-image: url(/images/auth-bg.png);
  background-size: cover;
  background-position: center;
  /* height: 100px; */
}

/* responvise */
.w-lg-50 {
  width: 100%;
}

.w-lg-500px {
  width: 100%;
}

.wrapper {
  flex: none;
  height: 100vh;
  flex-direction: column-reverse;
}
.wrapper-left-row {
  flex-grow: 1;
  /* justify-content: center; */
  margin-top: 5rem;
  padding: 0 2rem;
}
.lg-block {
  display: none;
}
.mb-lg-10 {
  margin-bottom: 0;
}
@media (min-width: 640px) {
  .w-lg-500px {
    width: 500px;
  }
}
@media (min-width: 1024px) {
  .w-lg-50 {
    width: 50%;
  }
  .w-lg-500px {
    width: 500px;
  }
  .wrapper {
    flex: 1;
    flex-direction: row;
  }
  .wrapper-left-row {
    flex-grow: 0;
    margin-top: 0;
  }
  .flex-row-fluid {
    flex: 1 auto;
    min-width: 0;
  }
  .lg-block {
    display: block;
  }
  .mb-lg-10 {
    margin-bottom: 3rem;
  }
}
