/* Stylesheet for Heywood and Hawkeridge Village Hall */

p {
  color: black;
  font-family: Montserrat;
  font-size: 12pt;
}

body {
    background-color: LightYellow;
    font-family: Montserrat;
    font-size:14pt;
}

h1 {
  color: black;
  margin: 10px;
  text-align: center;
  font-size: normal;
  font-family: "Noto Serif TC";
}

/* default button */
button {
    background-color: transparent;
    color: DimGrey;
    font-family: Montserrat, sans-serif;
    font-size: 12pt;
    padding: 5pt;
    border: none;
    border-radius: 5pt;
    margin: 2px 5px;
    transition: background-color 1s;
}

button:hover {
    background-color: DarkOliveGreen;
    color: Snow;
}

a {
  color: Snow;
  font-family: Montserrat;
  font-size: 12pt;
}

a:hover {
  font-weight: bold;
}

.user {
  color: DarkOliveGreen;
}

.user:hover {
  background-color: DarkOliveGreen;
  transition: background-color 1s;
}

.admin {
  color: IndianRed;
}

.admin:hover {
  background-color: IndianRed;
}

.centre {
    border-style: none;
    /* margin-left: auto;
    margin-right: auto; */
    width: 100%;
    padding: 2px;
    text-align: center;
}

.signinform {
  background-color: DarkOliveGreen;
  color: Snow;
  border: none;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

label {
  color: Snow;
  font-family: Montserrat;
  font-size: 12pt;
}

input[type=text], input[type=password] {
  border-style: solid;
  border-width: 1px;
  border-color: #add8e6;
  border-radius: 5px;
  padding: 5px;
  font-size: 12pt;
  font-family: Montserrat;
  min-width: 250px;
}