/*----------------------------------------*/
/*  17. Login & Register
/*----------------------------------------*/
.login-form {
  -webkit-box-shadow: 0px 0px 4px 4px #e5e5e8;
          box-shadow: 0px 0px 4px 4px #e5e5e8;
  background-color: #050a08;
  border-radius: 14px;
  padding: 7px 14px 7px 14px;
}

.background-white-transparent {
  -webkit-box-shadow: 1px 1px 5px 5px #000000ab;
          box-shadow: 1px 1px 5px 5px #000000ab;
  background-color: #ffffffe3;
  border-radius: 4px;
  padding: 20px 6px 20px 0px;
}

.background-white-transparent-2 {
  -webkit-box-shadow: 1px 1px 5px 5px #000000ab;
          box-shadow: 1px 1px 5px 5px #000000ab;
  background-color: #ffffffe3;
  border-radius: 4px;
  padding: 20px 10px 20px 10px;
}

.background-white-transparent-3 {
  -webkit-box-shadow: 0px 0px 4px 4px #e5e5e8;
          box-shadow: 0px 0px 4px 4px #e5e5e8;
  background-color: #050a08;
  border-radius: 14px;
  padding: 0px 9px 14px 4px;
  margin: 0 auto;
}

.login-form label {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 12px;
  font-weight: 400;
}

.login-form input {
  width: 100%;
  background-color: transparent;
  border: 1px solid #8a8a8aeb;
  border-radius: 5px;
  line-height: 23px;
  padding: 10px 20px;
  font-size: 16px;
  margin-bottom: 15px;
}

.login-form input[type="checkbox"] {
  width: auto;
}

.login-title {
  font-size: 20px;
  line-height: 23px;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.login-title-2 {
  font-size: 20px;
  line-height: 23px;
  font-weight: 400;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.login-form .check-box {
  float: left;
  margin-right: 70px;
}

.login-form .check-box:last-child {
  margin-right: 0;
}

.login-form .check-box input[type="checkbox"] {
  display: none;
}

.login-form .check-box input[type="checkbox"] + label {
  position: relative;
  padding-left: 30px;
  line-height: 20px;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.login-form .check-box input[type="checkbox"] + label:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: block;
  border: 2px solid #000;
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.login-form .check-box input[type="checkbox"] + label:after {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "\f00c";
  font-family: 'FontAwesome';
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 20px;
  opacity: 0;
  width: 20px;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.login-form .check-box input[type="checkbox"]:checked + label:before {
  border: 2px solid #000;
}

.login-form .check-box input[type="checkbox"]:checked + label:after {
  opacity: 1;
}

select {
	display: block !important;
	margin: 0;
	border: 0;
	padding: 0;
	height: 1px;
	opacity: 0;
	position: relative;
	top: 30px;
}

.forgotton-password_info a {
  font-size: 16px;
}