.login-form {
    width: 300px;
    margin: 0 auto;
    font-family: sans-serif;
  }

  .login-form img {
    text-align: center;
    color: #4d4d4d;
    font-size: 24px;
    padding: 20px 0 20px 0;
    margin-top: 3em;
    margin-left: 3em;
    max-width: 100%;
    
  }

  .login-form input[type="password"],
  .login-form input[type="text"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #dddddd;
    margin-bottom: 15px;
    box-sizing: border-box;
  }

  .login-form input[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #535b63;
    border: 0;
    box-sizing: border-box;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
  }

  button {
    height: 2.5em;
    width: 12em;
    background-color: #39dfd2;
    -webkit-border-radius: 1.5em;
    -moz-border-radius: 1.5em;
    border-radius: 1.5em;
    color: white;
    font-size: 0.8em;
    font-weight: bold;
    cursor: pointer;
    border: 0;
    text-transform: uppercase;
    margin-top: 1em;
    margin-left: 6em;
  }


.message {
    position: relative;
    line-height: 1em;
    background-color: aliceblue;
    border: 1px solid blue;
    height: 1em;
    padding: 0.5em;
    display: none;
    margin-top: 3em;
}

.message[data-status="success"] {
    background-color: aquamarine;
    border-color: green;
    display: block;
}

.message[data-status="error"] {
    background-color: rgb(234, 89, 89);
    border-color: red;
    display: block;
}