body {
  font-family: "Cinzel", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", serif;
  background: #f6f0e6;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.logo {
  width: auto;
  height: 200px;
  margin-bottom: 40px;
  margin-top: 40px;
}
.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px;
  border-radius: 16px;
  background-color: #e9e2d6;
  margin-top: 0;
  box-shadow: 0 2px 8px;
}
h2 {
  margin-top: unset;
  text-align: center;
}
input {
  background-color: #e9e2d6;
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 2px solid #ccc;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease-in-out;
}
input:focus {
  border-color: rgb(25, 53, 66);
}
button {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: rgb(13, 28, 35);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, transform 01s ease-in-out;
}
button:hover {
  background-color: rgb(25, 53, 66);
}
button:active {
  transform: scale(0.98);
}
.remember {
  display: inline-flex;
  justify-content: left;
  align-items: center;
  font-size: 12px;
  font-style: italic;
}
.remember input {
  width: 15px;
  margin-right: 8px;
}
.remember input[type="checkbox"] {
  accent-color: rgb(25, 53, 66);
  cursor: pointer;
}
