body {
  background-color:white;
  font-family: "Open Sans", sans-serif;
  color: #333333;
}

.box-form {
  width: 100%;
  max-width: 960px;
  margin: 0 auto; 
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex: 1 1 100%;
  align-items: stretch;
  justify-content: space-between;
  box-shadow: 0 0 7px 0px #e8e8e8;
  box-sizing: border-box;
}

/* Password Toggle Styles */

.toggle-password i {
  font-size: 18px;
  color: #666;
}

#toggle-password:focus {
  outline: none;
  box-shadow: none;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
}

/* END OF Password Toggle Styles */


@media (max-width: 1000px) {
  .box-form {
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
  }

  .box-form .left {
    width: 100%;
    min-height: 300px; 
    background-position: center;
  }

  .box-form .left .overlay {
    height: auto; 
    padding: 2rem;
    background: rgba(89, 97, 249, 0.8); 
  }

  .box-form .right {
    width: 100%;
    padding: 2rem;
  }
}


@media (max-width: 700px) {
  .box-form {
    width: 100%;
    max-width: 570px;
    flex-direction: column; 
    box-shadow:none !important;
  }

  .box-form .left,
  .box-form .right {
    width: 100%;
    padding: 1rem;
  }
}

.box-form div {
  height: auto;
}
.box-form .left {
  color: #FFFFFF !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-image: url("https://bizeemtraffic.com/images/login.jpg") !important;
  overflow: hidden !important;
}

.box-form .left {
    align-content:center !important;
}

@media (max-width: 700px) {
 .box-form .left {
    display:none;
 }
}


.box-form .left .overlay {
  padding: 30px !important;
  width: 100% !important;
  height: 100% !important;
  background: #5961f9ad !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
.box-form .left .overlay h1 {
  font-size: 4vmax !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  margin-top: 40px !important;
  margin-bottom: 20px !important;
}
.box-form .left .overlay span p {
  margin-top: 30px !important;
  font-weight: 900 !important;
}
.box-form .left .overlay span a {
  background: #3b5998 !important;
  color: #FFFFFF !important;
  margin-top: 10px !important;
  padding: 14px 50px !important;
  border-radius: 100px !important;
  display: inline-block !important;
}
.box-form .left .overlay span a:last-child {
  background: rgb(29 155 240) !important;
  margin-left: 30px !important;
}
.box-form .right {
  padding: 1.175rem !important;
  overflow: hidden !important;
}

.box-form a {
    font-weight:bold;
}

@media (max-width: 750px) {
  .box-form .right {
    width: 100% !important;
  }
}

@media (min-width: 751px) {
  .box-form .right {
    min-width:340px !important;
  }
    .box-form .left {
  }
}

.box-form .right h5 {
  font-size: 2vmax !important;
  margin-top:1em !important;
  margin-bottom:3em !important;
  line-height: 0 !important;
}

@media (max-width: 980px) {
.box-form .right h5 {
  font-size: 4vmax !important;
  }
}

.box-form .right p {
  font-size: 14px;
  color: #818181 !important;
}
.box-form .right .inputs {
  overflow: hidden !important;
}
.box-form .right input {
  width: 100% !important;
  padding: 10px !important;
  margin-top: 25px !important;
  font-size: 16px;
  border: none !important;
  outline: none !important;
  border-bottom: 1px solid #c1c1c1 !important;
}

.box-form .right a:not(#buttonex) {
  width: 100% !important;
  padding: 10px !important;
  margin-top: 25px !important;
  font-size: 16px !important;
  border: none !important;
  outline: none !important;
  border-bottom: 1px solid #c1c1c1  !important;
}

.box-form .right input:not(#buttonex) {
  width: 100% !important;
  padding: 10px !important;
  margin-top: 25px !important;
  font-size: 16px !important;
  border: none !important;
  outline: none !important;
  border-bottom: 1px solid #c1c1c1  !important;
}


.box-form .right .remember-me--forget-password {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}
.box-form .right .remember-me--forget-password input {
  margin: 0 !important;
  margin-right: 7px !important;
  width: auto !important;
}


label {
  display: block !important;
  position: relative !important;
  margin-left: 30px !important;
}

label::before {
  content: ' \f00c' !important;
  position: absolute !important;
  font-family: FontAwesome;
  background: transparent;
  border: 3px solid #70F570;
  border-radius: 4px;
  color: transparent;
  left: -30px;
  transition: all 0.2s linear;
}

label:hover::before {
  font-family: FontAwesome;
  content: ' \f00c';
  color: #fff;
  cursor: pointer;
  background: #70F570;
}

label:hover::before .text-checkbox {
  background: #70F570;
}

label span.text-checkbox {
  display: inline-block;
  height: auto;
  position: relative;
  cursor: pointer;
  transition: all 0.2s linear;
}

label input[type="checkbox"] {
  display: none;
}