body {
  margin: auto;
  font-family: "Courier New", Courier, monospace;
  background-color: #1e40af;
  color: #fff;
}

a {
  color: #85650a;
  text-decoration: none;
}

a.login-again {
  color: #6272a4;
  padding: 10px;
}

a.login-again:hover {
  color: #f1fa8c;
  background-color: #6272a4;
  padding: 10px;
}

a:hover {
  color: #d0dd40;
}

.container {
  padding: 50px;
}

.login-form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 80vh;
}
.message-box {
  background-color: #fff;
  padding: 10px 150px;
}
.error-label {
  color: #fdad34;
  font-weight: bold;
}
.success-label {
  color: #ad400c;
  font-weight: bold;
}
.field {
  padding-top: 25px;
}

.email {
  height: 40px;
  font-size: 25px;
  outline: none;
  padding: 5px 50px 5px 10px;
  background-color: #fff;
  border: none;
  color: #777777;
  border-bottom: #d0dd40 1px solid;
}

.email::placeholder {
  color: #777777;
}

.login {
  background-color: #fdad34;
  color: #f8f8f2;
  border: none;
  border-radius: 5px;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.login:hover {
  background-color: #45527a;
}

.message {
  background-color: #f1fa8c;
  color: #45527a;
  padding: 25px;
}
.board-header {
  text-align: right;
}

.logout {
  color: rgb(255, 34, 34);
}

.logout:hover {
  cursor: pointer;
  text-decoration: underline;
}

#customers {
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  border-collapse: collapse;
  width: 100%;
}

#transactions td,
#transactions th {
  border: 1px solid #f8fafd;
  padding: 8px;
}

#transactions tr {
  background-color: #f8fafd;
  color: #000;
}

#transactions tr:hover {
  background-color: #f8fafd;
}

#transactions th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #f8fafd;
  color: #000;
}

.wave {
  animation-name: wave-animation; /* Refers to the name of your @keyframes element below */
  animation-duration: 2.5s; /* Change to speed up or slow down */
  animation-iteration-count: infinite; /* Never stop waving :) */
  transform-origin: 70% 70%; /* Pivot around the bottom-left palm */
  display: inline-block;
}

@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  } /* The following five values can be played with to make the waving more or less extreme */
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
  } /* Reset for the last half to pause */
  100% {
    transform: rotate(0deg);
  }
}
