.login-form {
  margin: auto;
  padding: 20px 25px;
}

.btn1 {
  color: white;
  padding: 10px 20px;
  margin: 10px 0;
  width: 100%;
  font-size: 18px;
}

.headingsContainer1 {
  text-align: center;
  padding-top: 1%;
}

.headingsContainer1 p {
  color: gray;
  margin: 0 0 30px;
}

.subcontainer {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.subcontainer a {
  font-size: 16px;
  margin-bottom: 12px;
}

.forgotpsd a {
  color: rgb(74, 146, 235);
}

.forgotpsd a:link {
  text-decoration: none;
}

.register {
  text-align: center;
  margin-top: 20px;
}

.register a {
  color: rgb(74, 146, 235);
}

.register a:link {
  text-decoration: none;
}

.password-container {
  position: relative;
}

#pswrd {
  padding-right: 30px;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  width: 20px;
  height: 20px;
  background-image: url('../../images/backroud-standard-images/eye-closed-icon.png');
  background-size: cover;
}

#pswrd:focus+.toggle-password {
  background-image: url('../../images/backroud-standard-images/eye-icon.png');
}

.cancel-link {
  display: flex;
  justify-content: center;
  color: rgb(74, 146, 235);
  /* text-decoration: underline; */
  margin-top: 5px;

  a {
    cursor: pointer;
  }
}

/* Media queries for the responsiveness of the page */
@media screen and (max-width: 600px) {
  .btn {
    margin: 10px 0px;
  }

  .login-form {
    height: 100vh;
  }

  .cancel-link {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 0px;
  }
}