body {
  background-color: #f4f4f4;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}
.form input {
 font-family: "Roboto", sans-serif;
  outline: 10;
  background:  #F7FAFF;
  width: 90%;
  border: 2;
  margin: 10 10 10px;
  padding: 2px;
  box-sizing: border-box;
  border: 6px groove solid;
  border-radius: 2px;
  font-size: 12px;
}
.errorMessage {
  background-color: #f8d7da;         /* Light red background */
  color: #721c24;                   /* Dark red text */
  border: 1px solid #f5c6cb;        /* Border matching background tone */
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
  font-size: 12px;
  font-family: Arial, sans-serif;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional subtle shadow */
}
.errorMessage {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 3; }
}

.login-page {
  width: 370px;
  padding: 1% 0 0;
  margin: auto;
}button {
 background-color: ##f1f1f1;
  border: line;
  color: black;
  padding: 6px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 10px 10px;
  cursor: pointer;
  border-radius: 10px;
  font-size: 14px;
}

#content {
  width: 450px;
  background-color: #ffffff;
  padding: 25px 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 2px;
  box-sizing: border-box;
  text-align: left;
}

#content h3 {
  text-align: center;
  margin-bottom: 20px;
}

#content img {
  max-width: 200px;
}

fieldset {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 6px;
}

legend {
  font-weight: bold;
  padding: 0 20px;
}

.formrow {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.prompt {
  margin-bottom: 6px;
  font-weight: 600;
}

.element input[type="text"],
.element input[type="password"],
.element select {
  width: 100%;
  padding: 8px 10px;
  font-size: 11px;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
}

.element input[type="text"]:focus,
.element input[type="password"]:focus,
.element select:focus {
  border-color: #007bff;
  outline: none;
}
.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #206a97;
   color: white;
   text-align: center;
   font-size: 14px;