body {
  margin: 0%;
  padding: 0%;
  background-color: rgba(214, 210, 210, 0.694);
  font-family: sans-serif;
}
#logo {
  width: 40%;
  margin: auto;
  margin-top: 30px;
}
form {
  position: relative;
  left: -40px;
  margin: auto;
  margin-top: 80px;
  width: 30%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 30px;
  border-radius: 5px;
  background-color: #133b5a;
}
* {
  box-sizing: border-box;
}
h1 {
  text-align: center;
  margin: auto;
  text-decoration: none;
  color: white;
  margin-bottom: 30px;
  padding-top: 10px;
}
form > label {
  font-size: 19px;
  color: #ccc;
}

#submit {
  background-color: #2b619e;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  width: 100%;
  font-size: 20px;
}
#submit + p {
  color: white;
  text-align: center;
}
input[type="submit"]:hover {
  background-color: #3973b6;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}
#main {
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 30%;
  justify-content: center;
  align-items: center;
}
#main > img {
  width: 100%;
  flex-wrap: wrap;
}
a {
  color: white;
  text-decoration: none;
  margin-left: 10px;
}
a:hover {
  text-decoration: underline;
}
@media all and (min-width: 200px) and (max-width: 720px) {
  form {
    width: 80%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 30px;
    border-radius: 5px;
    background-color: #133b5a;
  }
  #main {
    margin: auto;
    margin-top: 20px;
    width: 80%;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
  }
}
