html, body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family: "Signika", sans-serif;
  background-color: #f5f5f5;
}

p {
  font-family: "Signika", sans-serif;
}

.site-header {
  width: 100%;
  background-color: #eeeeee;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0;
}

.nav-brand {
  font-weight: 600;
  font-size: 24px;
}

.brand-link {
  font-weight: 600;
  font-size: 24px;
  text-decoration: none;
  color: #961d2d;
}

ul.breadcrumb {
  display: flex;
  list-style: none;
  margin: 0;
  width: 100%;
}

ul.breadcrumb li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.container {
  background-color: #eeeeee;
  display: flex;
  flex-direction: column;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 5%;
  margin: 20px auto;
  width: 90%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.login-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #961d2d;
  margin-bottom: 25px;
}

.login-box {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.login-box label {
  margin-bottom: 5px;
  font-weight: 500;
}

.login-box input[type="email"],
.login-box input[type="password"] {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.button-container button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #961d2d;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button-container button:hover {
  background-color: #7a1722;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding-top: 100px;
}

