body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: rgb(226, 69, 30);
}
#container {
  position: fixed;
  top: 25%;
  left: 35%;
}
.login {
  background-color: rgb(3, 37, 51);
  width: 400px;
  color: bisque;
  padding: 40px;
  box-shadow: 10px 10px 25px #000000;
  text-align: center;
}
.login input {
  display: block;
  margin: 20px auto;
  text-align: center;
  align-items: center;
  background: none;
  padding: 10px;
  font-size: 15px;
  border-radius: 22px;
  color: rgb(19, 130, 226);
}
.login input[type="text"],
.login input[type="password"] {
  border: 2px solid #1739cf;
}
.login input[type="submit"] {
  width: 150px;
  border: 2px solid #17cf20;
  cursor: pointer;
}
.login input[type="text"]:focus,
.login input[type="password"]:focus {
  border-color: #17cf20;
  width: 280px;
  transition: 0.2s;
}
.login input[type="submit"]:hover {
  background-color: #45e713;
  transition: 0.1s;
}
