body {
    font-family: 'Clash Display', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1a082d;
}
.login-container {
    background: #9d5be0;
    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: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

button{
  padding: 0px 32px 0px 32px;
  border-radius: 20px 0px 20px 20px;
  background-color: #b174f8;
  color: white;
  text-decoration: none;
  border: none;
  height: 55px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center; 
  font-weight: bold;
  width: 100%;
}

h2{
    color: white;
}

.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);
}
