.login-screen {
 
  text-align: center;
  padding-top: 30px;
}
.login-screen .left-side {
  background-color: white;
  padding: 50px 50px;
  flex: 1;
}

.login-screen .right-side {
  background-color: aliceblue;
  flex: 1;
}
.form-control:focus {
  box-shadow: none;
}
.password-field {
  display: flex;

  justify-content: space-between;
  align-items: center;
}
.password-field .showpass-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
#togglePassword {
  /* margin-top: -25px; */
  /* margin-left: 350px; */
  width: fit-content;
  cursor: pointer;
  color: black;
}

.login-btn {
  padding: 10px 30px;
  width: 80%;
  text-align: center;
  background-color: #3d80d9;
}

.left-side form h5 {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #000;
  line-height: 0.1em;
  margin: 10px 0 20px;
}

.left-side form h5 span {
  background: #fff;
  padding: 0 10px;
}

.google-fb-login {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
.google-fb-login a {
  text-decoration: none;
  flex: 1;
  flex-basis: 100%;
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
}
.google-fb-login button {
  border: 1px solid black;
  background-color: aliceblue;
  padding: 10px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Changing input styles */
.left-side input[type="email"] {
  border: none;
  border-bottom: 1px solid #555;
  border-radius: 0%;
}
.left-side input[type="email"]:focus {
  border: none;
  border-bottom: 1px solid #555;
}
.left-side input[type="text"] {
  border: none;
  border-bottom: 1px solid #555;
  border-radius: 0%;
}
.left-side input[type="text"]:focus {
  border: none;
  border-bottom: 1px solid #555;
}
.left-side input[type="password"] {
  border: none;
  border-bottom: 1px solid #555;
  border-radius: 0%;
}
.left-side input[type="password"]:focus {
  border: none;
  border-bottom: 1px solid #555;
}

.remember-box {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 576px) {
  .remember-box {
    flex-direction: column;
  }
}
@media (min-width: 577px) and (max-width: 768px) {

}

@media (min-width: 767px) and (max-width: 992px) {
}

@media (min-width: 992px) and (max-width: 1200px) {
}

@media (min-width: 1201px) and (max-width: 2560px) {
}

