html,
body {
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

body.registration-screen {
  overflow: initial;
  height: auto;
}

input:focus {
  outline: none;
  border-color: white;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control:focus {
  border-color: #fff;
  box-shadow: none
}

.grey-text {
  color: #405063;
}

 .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  min-height: 100vh;
}

.form-signin {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align items to the start of the main container */
  width: 100%;
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.form-signin .top-row {
  width: 100%;
  display: flex;
  justify-content: space-between; /* This spaces the back icon and the language switcher on opposite ends */
  padding: 10px; /* Adds some padding around the top row contents */
}

.form-signin .back-icon-link {
  cursor: pointer;
}

.form-signin .content-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.registration-screen .bg-image {
  position: absolute;
  z-index: 1;
  height: 100%;
}

.payment-logo {
  height: 60px;
}

.payment-options {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.payment-options img {
  height: 40px;
}

@media (max-width: 768px) {
  .payment-options img {
    height: 30px;
  }

  .payment-logo {
    height: 40px;
  }
}

.price-box {
  padding: 1rem;
  border: 1px solid var(--blue-color);
  border-radius: 7px;
  margin: 1.5rem 0;
  text-align: left;
}

.logo-image {
  width: 100px;
  padding: 0;
}

.multiple-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.multiple-logo img {
  height: 70px;
  border-radius: 5px;
}

.form-signin {
background-color: #F5F7FA;
  max-width: 500px;
  padding: 35px;
  border-radius: 12px;
  z-index: 2;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  @media (min-width: 768px) {
    .bd-placeholder-img-lg {
      font-size: 3.5rem;
    }
  }

  .b-example-divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
  }

  .b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
  }

  .bi {
    vertical-align: -.125em;
    fill: currentColor;
  }

  .nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
  }

  .nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

.logo-image-merge {
  width: 250px;
}

.customer-type-wrapper {
  background-color: #fff;
  border-radius: 22px;
  padding: 16px;
  text-align: left;
}

.customer-type-wrapper-title {
  font-size: 14px;
}

.radio-item {
  padding: 6px 0;
}

.radio-item .form-check-label {
  font-size: 12px;
  cursor: pointer;
}

.radio-item .form-check-label.checked {
  color: var(--blue-color);
}

.customer-type-group {
  display: none;
}

.customer-type-group.active {
  display: block;
}

.hr-divider {
  margin: 0;
  color: #DAE5F2;
}

.radio-item.form-check .form-check-input {
  float: right;
}

.hidden-div {
  display: none;
  transition: display 0.5s ease;
}

.hover-target:hover + .hidden-div {
  display: block;
}