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


.login-container {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
  text-align: center;
}
input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 16px;
}

button{
  margin-top: 1em;
  padding: 0px 32px 0px 32px;
  border-radius: 30px;
  background-color: #ff6d00;
  color: white;
  text-decoration: none;
  border: none;
  height: 55px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center; 
  font-weight: bold;
  width: 100%;
  font-size: 1.2em;
}

.errorMessage {
  background-color: #e74c3c;
  color: #ffffff;
  padding: 15px 20px;
  text-align: center;
  border-radius: 8px;
  width: 30%;
  min-width: 350px;
  position: fixed;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  font-size: 1em;
  font-weight: 600;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.errorMessage.show {
  opacity: 1;
  display: block;
  transform: translateX(-50%) translateY(-10px);
}
