/* Change the white to any color ;) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

/*Change text in autofill textbox*/
input:-webkit-autofill {
  -webkit-text-fill-color: teal !important;
}

form {
  display: -ms-grid;
  display: grid;
  padding: 1em;
  background: #f9f9f9;
  /* background: rgba(0, 0, 0, 0.4); */
  border: 1px solid #c1c1c1;
  margin: 2rem auto 0 auto;
  max-width: 600px;
  padding: 1em;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
}

form input {
  background: #fff;
  border: 1px solid #9c9c9c;
}

form button {
  /* background: lightgrey; */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1075d1+0,03b9fb+100 */
  background: #1075d1;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#1073d1), to(#03bafc));
  background: linear-gradient(to bottom, #1073d1 0%, #03bafc 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1075d1', endColorstr='#03b9fb', GradientType=0);
  /* IE6-9 */
  padding: 10px;
  color: black;
  border: Solid 1px Black;
  border-radius: 2px;
  cursor: pointer;
  /* font-family: "Arial Narrow"; */
  /* font-weight:bold; */
  font-size: 14pt;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
  padding: 0.7em;
  width: 100%;
  margin-top: 0.4em;
  /* border: 0; */
}

form button:hover {
  /* background: gold; */
  background: #E1E2E3;
  border: Solid 1px Black;
  color: Black;
}

label {
  padding: 0.5em 0.5em 0.5em 0;
  color: #0998E6;
}

input {
  padding: 0.7em;
  margin-bottom: 0.5rem;
}

input:focus {
  outline: 1px solid gold;
}

.heading {
  /* grid-column: 1 / 3; */
  color: #0998E6;
  border-bottom: Solid 1px Silver;
  text-align: center;
  font-weight: bold;
}

.error {
  /* grid-column: 1 / 3; */
  color: red;
  /* border-bottom:Solid 1px Silver; */
  text-align: center;
  font-weight: bold;
}


.rememberme {
  grid-column: 2 / 3;  
}


.rememberme input[type="checkbox"] {
  transform: scale(1.5); /* Adjust the scale factor as needed */
}

@media (min-width: 500px) {
  form {
    -ms-grid-columns: 200px 1fr;
    grid-template-columns: 200px 1fr;
    grid-gap: 16px;
  }
  label {
    text-align: right;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
  input,
  button {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
  }
  .heading {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    color: #0998E6;
    border-bottom: Solid 1px Silver;
    text-align: center;
    font-weight: bold;
  }
  .error  {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    color: red;
    /* border-bottom:Solid 1px Silver; */
    text-align: center;
    font-weight: bold;
  }

}
/*# sourceMappingURL=loginstyles.css.map */