html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #000000;
  font-family: Arial, sans-serif;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 90%;
  max-width: 500px;
  padding: 20px;
  background: #000000;
  border: 2px solid #c40000;
  border-radius: 8px;
  text-align: center;
  box-sizing: border-box;
}

.logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  color: #c40000;
  margin-top: 0;
}

input[type="email"],
input[type="password"],
input[type="text"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  background-color: #000000;
  color: #ffffff;
  box-sizing: border-box;
}

input[type="submit"],
button {
  width: 100%;
  padding: 10px;
  background: #c40000;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-sizing: border-box;
}

input[type="submit"]:hover,
button:hover {
  background: #a00000;
}

a[href^="mailto:"],
a[href^="tel:"] {
  text-decoration: none;
  color: inherit;
}

footer {
  margin-top: 20px;
  font-size: 14px;
  color: #ffffff;
}

.social-links {
  margin-bottom: 20px;
}

.social-links a {
  margin: 0 10px;
  font-size: 20px;
  color: #c40000;
  text-decoration: none;
}

.social-links a:hover {
  text-decoration: underline;
}

.admin-link {
  margin-top: 10px;
  display: block;
  font-size: 12px;
  color: #666;
  text-decoration: none;
}

.admin-link:hover {
  color: #c40000;
	text-decoration: underline;
}