.background-dark-gradient {
  background: linear-gradient(45deg, #1b384b 0%, rgba(27, 56, 75, 0) 70%), linear-gradient(135deg, #1a274b 10%, rgba(26, 39, 75, 0) 80%), linear-gradient(225deg, #312649 10%, rgba(49, 38, 73, 0) 80%), linear-gradient(315deg, #1e3d34 100%, rgba(30, 61, 52, 0) 70%);
}
body {
  background-color: #1d2939;
  background-image: none;
  background: linear-gradient(45deg, #1b384b 0%, rgba(27, 56, 75, 0) 70%), linear-gradient(135deg, #1a274b 10%, rgba(26, 39, 75, 0) 80%), linear-gradient(225deg, #312649 10%, rgba(49, 38, 73, 0) 80%), linear-gradient(315deg, #1e3d34 100%, rgba(30, 61, 52, 0) 70%);
  height: 100vh;
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fira Sans', sans-serif;
}
.login-form {
  width: 300px;
  max-width: 90vw;
}
.login-form input[type=text],
.login-form input[type=password] {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 15px;
  padding: 7px 14px;
  border: 2px solid white;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  font-family: inherit;
  color: white;
  background: none;
  letter-spacing: 1px;
}
.login-form input[type=text]:focus,
.login-form input[type=password]:focus {
  box-shadow: 0px 0px 10px 1px rgba(0, 119, 255, 0.8);
  border: 2px solid white;
  outline: none;
}
.login-form ::placeholder {
  font-weight: 400;
}
.login-form .login-buttons {
  display: flex;
  justify-content: space-between;
}
.login-form .login-buttons a,
.login-form .login-buttons button {
  border: none;
  padding: 10px 13px;
  font-size: 20px;
  color: #1d2939;
  background: white;
  border-radius: 5px;
  font-weight: 200;
  font-family: inherit;
  text-transform: uppercase;
  text-align: center;
  flex-grow: 1;
  margin-right: 15px;
  line-height: 30px;
  cursor: pointer;
  transition: all 0.3s;
}
.login-form .login-buttons a .iconify,
.login-form .login-buttons button .iconify {
  font-size: 26px;
}
.login-form .login-buttons a:hover,
.login-form .login-buttons button:hover {
  box-shadow: 0px 0px 10px 1px rgba(0, 119, 255, 0.8);
  -webkit-box-reflect: below 0px linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 100%);
}
.login-form .login-error {
  margin-bottom: 15px;
  color: yellow;
}
.login-brand {
  text-align: center;
  padding-bottom: 40px;
}
.login-brand img {
  height: 150px;
}
#login-vendor img {
  height: 50px;
  position: absolute;
  right: 30px;
  bottom: 30px;
}
