.login-page,.register-page {
  background-color: #F1F3F6;
}

.login-page .login-form,
.register-page .register-form{
  background-color: #fff;
  box-shadow: 0px 12px 50px rgba(0, 0, 0, 0.1);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.login-page .login-form form ,
.register-page .register-form form {
  width: 100%;
  padding: 0 30px;
}

.login-page .login-form .logo ,
.register-page .register-form .logo {
  padding: 10px 0;
}

.login-page .login-form .logo img,
.register-page .register-form .logo img{
    width: auto;
}

.login-page .login-form .logo img{
    height: 140px;
}

.register-page .register-form .logo img{
    height: 100px;
}

.login-page .login-form .page-heading,
.register-page .register-form .page-heading {
  text-align: center;
  padding: 10px 0;
}

.login-page .login-form .page-heading h2 ,
.register-page .register-form .page-heading h2 {
  font-size: 30px;
  font-weight: 700;
}

.items {
  margin-top: 20px;
  margin-bottom: 5px;
}

.items label {
  font-size: 20px;
  color: #5666ff;
  margin-bottom: 8px;
}

.items .input{
  border-radius: 8px;
  overflow: hidden;
  display: flex;
}

.items .input,
.items .input select{
    background-color: #f1f3f6;
}

select:required:invalid {
    color: #666;
}
option[value=""][disabled] {
    display: none;
}
option {
    color: #000;
}

.items .input i {
  width: 50px;
  height: 50px;
  background-color: #0119fd;
  color: #fff;
  display: grid;
  place-content: center;
  font-size: 24px;
}

.items .input input {
  background-color: transparent;
  border: 0;
  padding: 10px;
  width: calc(100% - 50px);
}

.items .input input.is-invalid{
    border: 1px solid #dc3545;
}

.forgot-password a {
  color: #1E2772;
  font-size: 14px;
}

.form-signin {
  text-align: center;
  margin: 15px 0;
}

.form-signin .btn {
  background-color: #0119fd;
  width: 100%;
  color: #fff;
  font-size: 16px;
  padding: 10px;
  box-shadow: 0px 8px 12px rgb(1 20 253 / 30%);
}

.or-option {
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.or-option:before {
  width: 100%;
  height: 1px;
  background-color: #C2C2C2;
  position: absolute;
  top: 15px;
  left: 0;
  content: "";
  z-index: 1;
}

.or-option:after {
  width: 40px;
  height: 30px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  content: "";
  z-index: 2;
}

.or-option p {
  padding: 5px;
  text-transform: uppercase;
  color: #C2C2C2;
  font-size: 14px;
  margin-bottom: 0;
  z-index: 3;
  position: relative;
  display: block;
  width: 100%;
  z-index: 3;
}

.form-signup {
  text-align: center;
}

.form-signup .btn {
  background-color: #369f00;
  width: 100%;
  color: #ffffff;
  font-size: 16px;
  padding: 10px;
  border: 1px solid #2f9500;
}

.login-extra {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.login-extra a.back {
  font-weight: 500;
  color: #fff;
  background: #0119fd;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 99999999;
  height: 40px;
  width: 100px;
  font-size: 22px;
  text-align: center;
  padding-top: 3px;
  text-decoration: none;
  line-height: 34px;
  border-radius: 3px;
  transition: .3s ease-in-out;
}
.form-signup button.btn:focus {
    box-shadow: 0px 0px 10px #74ff2d;
}
.login-extra a.back .fa {
    font-size: 15px;
}
