main {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  position: relative;
}

header {
  width: 1200px;
  min-width: 1200px;
  max-width: 1200px;
  height: 80px;
  background: #ffffff;
  padding: 0 10px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main > section {
  width: 100%;
  height: calc(100vh - 80px - 100px);
  min-width: 1200px;
  min-height: 600px;
  background: url(/resources/image/login/background.jpg) no-repeat center;
  background-size: cover;
  position: relative;
}

main > section > article {
  width: 1200px;
  min-width: 1200px;
  max-width: 1200px;
  height: 100%;
  min-width: 1200px;
  padding: 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

main > section > article > div {
  width: 360px;
  background: rgba(248,249,252,0.95);
  padding: 40px 30px 50px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(60,145,180,0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.title {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
  padding-bottom: 10px;
}

label.input--login {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label.input--login > span:first-child {
  font-size: 13px;
}

label.input--login > input {
  width: 100%;
  height: 35px;
  padding: 0 10px;
  border: solid 1px #d7d7d7;
  border-radius: 3px;
  box-sizing: border-box;
}

label.input--login > span:last-child {
  font-size: 12px;
  color: #ff0000;
  padding-left: 5px;
}

.action {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

label.checkbox {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.submit-login {
  width: 100px;
  height: 30px;
  color: #ffffff;
  line-height: 28px;
  background: #0530ad;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}