body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
}

.form-container {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
}

.loginInputs {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

button {
  padding: 10px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.secondary-btn {
  background-color: #6c757d !important;
  margin-top: 10px !important;
}

.secondary-btn:hover {
  background-color: #5a6268 !important;
}
.loginMessage {
  text-align: left;
  color: red;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 0 0 black;
  margin-top: 10px !important;
  margin-bottom: 0px !important;
  border-top: 1px solid;
  /* margin-top: 8px; */
  padding-top: 6px;
  padding-bottom: 7px;
}

button:hover {
  background-color: #218838;
}
#loginForm {
  margin-bottom: 10px;
}
.loginForm button {
  margin-top: 15px;
}
.loginForm input {
  background: white;
  color: black;
}
#createAccount {
  width: 100%;
}
