
/* Button used to open the contact form - fixed at the bottom of the page */
.admin-open-button {
  background-color: #555;
  color: white;
  padding: 16px 10px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 5px;
  right: 5px;
  z-index: 98;
}

/* The popup form - hidden by default */
.admin-form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 5px solid grey;
  padding:10px;
  background-color: white;
  z-index: 99;
}

/* Add styles to the form container */
.admin-form-container {
  max-width: 500px;
  padding: 5px;
  background-color: white;
}

/* Full-width input fields */
.admin-form-container input[type=text], .admin-form-container input[type=password] {
  width: 100%;
  padding: 1px;
  margin: 1px 0px 1px 0px;
  border: none;
  background: #f1f1f1;
  font-weight: 500;
}

/* When the inputs get focus, do something */
.admin-form-container input[type=text]:focus, .admin-form-container input[type=password]:focus {
  background-color: #ddd;
  outline: none;
  color:black;
  font-weight: 300;
}

/* Set a style for the submit/login button */
.admin-form-container .btn {
  background-color: #4CAF50;
  color: white;
  padding: 8px 0px;
  text-align: center;
  border: none;
  cursor: pointer;
  width: 48%;
  height: 35px;
  margin:10px 0px;
  font-size:12px;
  font-weight: 700;
  text-align:center;
}

/* Add a red background color to the cancel button */
.admin-form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.admin-form-container .btn:hover, .admin-open-button:hover {
  opacity: 1;
}

.admin-form-font {
  color:black;
  font-weight: 200;
}
