/* this file is loaded by index.html and styles the page */
a.logo{
  text-decoration:none;
}
a.logo:visited {
  color:black;
}
* {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  margin: 2em 1em;
  line-height: 1.5em;
}

h1 {
font-size:1.8em;
}

.logo {
  font-size:24px;
  text-transform: uppercase;
}

form {
  background-color: #eee;
  display: grid;
  grid-gap: 1em;
  padding: 1em;
  max-width: 40ch;
}

input, textarea {
  border: 1px solid silver;
  display: block;
  font-size: 16px;
  margin-top:-12px;
  margin-bottom: 10px;
  padding: 5px;
  width:94%;
}

#login {
    border: 1px solid red;

}

button {
  background-color: #bbbbf2;
  border: 2px solid currentColor;
  border-radius: .25em;
  cursor: pointer;
  font-size: inherit;
  line-height: 1.4em;
  padding: 0.25em 1em;
  max-width: 20ch;
}

button:hover {
  background-color: lavender;
}

footer {
  margin-top: 3em;
  padding-top: 1.5em;
  border-top: 1px solid lightgrey;
  max-width:400px;
}
main {max-width:400px;}
button img {width:50px;}
.key {
  font-size:7px;
}