/* Button used to open the contact form - fixed at the bottom of the page */
.login-submit input[type="submit"] {
  height: 55px !important;
  border-radius: 5px !important;
  border: 2px solid #fff;
  color: #fff;
  width: 100%;
  background-color: #09ac09;
}
.login-submit input[type="submit"]:hover {
  background-color: green;
  border: none;
}
.login-wrap {
  background-color: #333;
  border: none;
  padding: 0;
}
.open-button {
  background-color: #333;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 280px;
  z-index: 9 !important;
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  /* border: 3px solid #f1f1f1; */
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 20px;
  padding-bottom: 10px;
  background-color: #333;
  text-align: left;
  color: #fff;
  border-radius: 5px;
}

/* Full-width input fields */

/* When the inputs get focus, do something */
.form-container input[type="text"]:focus,
.form-container input[type="password"]:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #04aa6d;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  opacity: 0.8;
}

/* Add a #d10d00 background color to the cancel button */
.form-container .cancel {
  background-color: #333;
  border: 2px solid #fff;
  border-radius: 5px;
}

/* Add some hover effects to buttons */
.form-container,
.open-button:hover {
  opacity: 1;
}
.form-container {
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}

.form-container .btn:hover {
  background-color: #cf0d0d;
  color: #fff;
  border: none;
}

input#ql_username,
input#ql_password {
  font-weight: bold;
  color: #333;
}

@media screen and (max-width: 600px) {
  .open-button {
    padding: 5px 15px;
    bottom: 20px;
    right: 20px;
    width: auto !important;
  }
}
