.login-page {
  background-color: #f7f7f7;
  width: 100%;
  height: 100vh;
  display: inline-block;
  display: flex;
  align-items: center;
}

::-ms-input-placeholder {
  color: #0B1956;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

::placeholder {
  color: #0B1956;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.input-group>.form-control:focus,
.input-group>.form-select:focus {
  box-shadow: none !important;
  outline: 0 !important;
  background: #F3F7FD;
}

h1 {
  color: #434fb6;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 0;
}

label {
  color: #192335;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  padding-bottom: 7px;
}

.btn-brand-1,
.btn-outline-brand {
  font-size: 15px;
  font-weight: 400;
  height: 50px;
  line-height: 39px;
  padding: 5px 25px;
}

.btn-brand-1 {
  background-color: #434fb6;
  border: 0;
  color: #fff;
}

.btn-brand-1:hover {
  color: #FFF;
}

.btn-outline-brand {
  background-color: initial;
  border: 1px solid #434fb6;
  color: #434fb6;
}

.btn-outline-brand:hover {
  background-color: #434fb6;
  border: 1px solid #434fb6;
  color: #fff;
}

.form-control {
  height: 50px;
  color: $color-blue-dark;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  border-radius: 12px;
  border: 1px solid rgba(15, 94, 221, 0.20);
  background: #F3F7FD;
}

.blue-card-box {
  background: #434fb6;
}

.blue-card-box a.logo {
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  font-size: 36px;
}

.blue-card-box h4 {
  color: #FFF;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.blue-card-box ul {
  margin: 0;
  padding: 0;
}

.blue-card-box ul li {
  list-style: none;
  background: url('../img/icons/check.png') left top no-repeat;
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  padding-left: 35px;
  padding-bottom: 10px;
}

.login-boxes {
  background: #434fb6;
  border-radius: 24px;
  padding: 0;
}

span.left-corner {
  background: #F3F7FD;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  border-color: rgba(15, 94, 221, 0.20);
}

span.right-corner {
  background: #F3F7FD;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-color: rgba(15, 94, 221, 0.20);
}


h6 {
  color: $color-blue-dark;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  display: flex;
  flex-direction: row;
}

h6:before,
h6:after {
  content: "";
  flex: 1 1;
  border-bottom: 1px solid #C9C9C9;
  margin: auto;
}

.rounded-left {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.rounded-right {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.p100 {
  padding: 70px;
}

.p25 {
  padding: 40px;
}

/***** Media Query *****/

@media(max-width:7678px) {

  .blue-card-box h4 {
    font-size: 18px;
  }

  .p100 {
    padding: 20px;
  }

}

@media(max-width:767px) {
  .login-page {
    height: auto;
  }

  .blue-card-box h4 {
    font-size: 18px;
  }

  .p100 {
    padding: 20px;
  }

  .rounded-right {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .rounded-left {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 0px;
  }

  .bg-white.rounded-right.p-4 {
    padding: 0px !important;
  }

  .p25 {
    padding: 0px;
  }

  .p-none {
    padding-top: 30px !important;
  }

}