@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700;900&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

h1 {
  margin: 0;
  padding: 0;
}

.login {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(139deg, rgba(177, 116, 160, 0.5) 7.94%, rgba(76, 50, 69, 0.37) 22.94%, rgba(38, 61, 98, 0.65) 61.99%, #263D62 99.99%, rgba(87, 98, 126, 0) 100%);
}

.body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  max-width: 1440px;
  margin: 0 auto;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form h1 {
  color: white;
  text-align: center;
  margin-bottom: 10px;
}
.form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form input {
  margin-bottom: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  outline: none;
  padding: 10px;
  font-size: 13px;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  -webkit-box-shadow: inset 0 -5px 45px rgba(100, 100, 100, 0.2), 0 1px 1px rgba(255, 255, 255, 0.2);
          box-shadow: inset 0 -5px 45px rgba(100, 100, 100, 0.2), 0 1px 1px rgba(255, 255, 255, 0.2);
}
.form input::-webkit-input-placeholder {
  color: white;
}
.form input::-moz-placeholder {
  color: white;
}
.form input:-ms-input-placeholder {
  color: white;
}
.form input::-ms-input-placeholder {
  color: white;
}
.form input::placeholder {
  color: white;
}
.form button {
  padding: 5px 45px;
  font-size: 16px;
  outline: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: #263D62;
  color: white;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.form button:hover {
  -webkit-transition: 300ms;
  transition: 300ms;
  background: white;
  color: #263D62;
}