@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&display=swap');

body {
  margin: 0;
  padding: 0;

  background-color: #EFF4FB;
  color: #A0A8C1;

  font-family: DM Sans;
  font-style: normal;
  font-weight: 500;
}

.backdrop {
  margin: 0;
  padding: 0;
  background: url('https://deveuloginassets.blob.core.windows.net/b2c/london.png');
  background-size: cover;
  background-repeat: no-repeat;

  width: 100vw;
  height: 100vh;

  opacity: 1;
}

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login {
  width: 360px;
  height: 450px;

  background: #FFFFFF;
  border: 1px solid #E2E6F5;

  box-sizing: border-box;
  box-shadow: 0px 4px 8px rgba(34, 37, 51, 0.07);
  border-radius: 3px;
}

.header {
  width: 360px;
  height: 75px;

  border-bottom: 1px solid #EEF2FC;
}

.logo {
  width: 120px;
  margin-top: 28px;
  margin-right: 40px;
  margin-left: 40px;
}

h3 {
  margin-top: 20px;
  margin-left: 40px;

  font-size: 26px;
  line-height: 90%;

  letter-spacing: -0.02em;

  color: #222533;
}

label {
  font-size: 12pt;
  font-family: DM Sans;
}

#api {
  margin-right: 40px;
  margin-left: 40px;
}

#next {
  background: #007cf1;
  color: #FFFFFF;

  border-radius: 4px;
  border: none;

  padding: 16px;
  margin-top: 12px;

  min-width: 145px;

  font-size: 14px;
  line-height: 90%;

  text-align: center;
  cursor: pointer;
}

#next:hover {
  background: #0082fc;
}

#signInName {
  width: 280px;
  height: 40px;

  border: 1px solid #E2E6F5;
  box-sizing: border-box;
  border-radius: 4px;

  padding-left: 14px;
  margin: 12px 0;
}

#password {
  width: 280px;
  height: 40px;

  border: 1px solid #E2E6F5;
  box-sizing: border-box;
  border-radius: 4px;

  padding-left: 14px;
  margin-top: 12px;
}

#forgotPassword {
  position: absolute;
  left: 40px;
  bottom: 24px;

  color: #A0A8C1;
  font-size: 14px;
  line-height: 90%;
  text-decoration: none;
}

.rememberMe {
  margin-top: 12px;
}

.error {
  width: 358px;

  position: absolute;
  bottom: -70px;
  background-color: #ffffff;
  margin-left: -40px;
  padding: 10px 40px;

  box-sizing: border-box;
  box-shadow: 0px 4px 8px rgba(34, 37, 51, 0.07);
  border-radius: 3px;

  font-size: 16px;
}

.error>p {
  margin: 4px 0;
}

.intro {
  display: none;
}

.create {
  display: none;
}

.divider {
  display: none;
}

.footer {
  position: absolute;
  width: 100%;
  bottom: 48px;

  user-select: none;
}

.rights {
  float: left;
  padding-left: 60px;
}

.notices-container {
  float: right;
  padding-right: 60px;
}

ul.notices {
  list-style-type: none;
  list-style: none;

  padding: 0;
  margin: 0;
}

ul.notices>li {
  display: inline;

  margin: 0 24px;
}

ul.notices>li:last-child {
  margin-right: 0;
}

ul.notices>li>a {
  color: #A0A8C1;
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  .backdrop {
    height: 90vh;
  }

  .footer {
    display: none;
  }
}