body {
  font-family: arial;
  color: #333;
  background: #323e59 url("background.svg") no-repeat;
  font-size: 14px;
  font-weight: 400;
}

.alchemy-login {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  width: 285px;
  margin: -180px 0 0 -182px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}

.announcement {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-height: 6em;
  width: 60%;
  background-color: #ffffffdd;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
  overflow-y: auto;
}

h2 {
  margin: 0 0 20px;
  line-height: 1;
  color: #777777;
  font-size: 18px;
  font-weight: 400;
}

input {
    outline: none;
    display: block;
    width: 100%;
    margin: 0 0 20px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    color: #999;
    font-family: "arial";
    box-sizing: border-box;
    font-size: 14px;
    font-wieght: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: 0.2s linear;
}

input:focus {
    color: #777;
    border: 1px solid #555;
}

button {
    cursor: pointer;
    background: #323e59;
    width: 100%;
    padding: 12px 15px;
    border: 0;
    color: #fff;
    font-family: "Arial";
    font-size: 16px;
    font-weight: 400;
}

button:hover {
    background-color: #22293a;
}

a {
    color: #777;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Error message: Change display mode from none to block!!*/
.error {
  display: block;
  color: red;
}

.msg {
  display: block;
  color: green;
}
