.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  background-color: #FFFFFF;
  font-family: "Roboto";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

 .home-login {
   display: flex;
   margin-top: 30px;
   justify-content: center;
   align-items: center;
   font-family: "Roboto";
   font-size: large;
 }

 .login-status {
   margin-left: 30px;
   margin-top: 20px;
   font-family: "Roboto";
   font-size: 2em;
   color: #ca6628;
 }
 .login-status {
  margin-left: 30px;
  margin-top: 20px;
  font-family: "Roboto";
  font-size: 2em;
  color: #ca6628;
}

.login-status a {
  /* Add your desired styles for the 'a' tag here */
  color: #ca6628; /* Example: change the link color */
  text-decoration: none; /* Example: remove the underline */
}


.form {
  background: #fff;
  width: 285px;
  padding: 40px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
/* ...rest of the CSS rules */


.login-page .form h2 {
  margin: 0 0 20px;
  line-height: 1;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
}

.login-page .form input {
  outline: none;
  display: block;
  width: 100%;
  margin: 0 0 20px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  color: #ccc;
  font-family: "Roboto";
  box-sizing: border-box;
  font-size: 14px;
  font-wieght: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: 0.2s linear;
}

.login-page .form input:focus {
  color: #333;
  border: 1px solid #FFFFFF;
}

.login-page .form button {
  cursor: pointer;
  background: #FFFFFF;
  width: 100%;
  padding: 10px 15px;
  border: 0;
  color: #fff;
  font-family: "Roboto";
  font-size: 14px;
  font-weight: 400;
}

.login-page .form button:hover {
  background: #FFFFFF;
}

.login-page .error, .login-page .valid {
  display:none;
}
