/*All changes here will modify every template.
  These changes can be overwritten, but serve to make a unified design easier.
  Don't repeat yourself with style rules. 
*/
body {
  background-color: #eee;
  margin:auto;
  font-family: "Segoe UI", Arial, sans-serif;
}

h1 {
  text-align: center;
  margin-top: 40px;
  color: #333;
  font-weight: bold;
}

button {
  padding: 10px;
  background-color: #73000a;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin: 20px auto;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

button:hover {
  background-color: #5a0008;
}

button:active {
  transform: scale(0.98);
}

p {
  text-align: center;
  color: #333;
  font-weight: bold;
}

button[type="submit"] {
  padding: 10px;
  background-color: #73000a;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

button[type="submit"]:hover {
  background-color: #500;
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

button[type="submit"]:active {
  transform: scale(0.98);
}

a {
  color: #73000a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}