@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Noto+Sans+KR:wght@100;200;300;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&display=swap');
* {
  font-family: 'Roboto','Noto Sans KR', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

html,
body {
  height: 100%;
  min-width: 1024px;
}

body {
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f5f5f5;
  /*background: url('/static/img/background/Shin-kori 3-4.jpg') no-repeat center center / cover;*/
  background: url('/static/img/background/robot-arm.png') no-repeat center center / cover;
}

.logo {
  width: 100%;
  height: auto;
  margin-bottom: 45px;
}

.form-sign-in {
  max-width: 400px;
  text-align: center;
}

.form-sign-in .form-floating:focus-within {
  z-index: 2;
}

.form-sign-in input {
  width: 400px;
  height: 60px;
  /*padding-left: 20px; */
  border-radius: 10px; border: none;
}
.form-sign-in input::placeholder {
  color: #687484;
}

.form-sign-in label {
  color: #687484;
  padding-left: 20px;
}

.form-sign-in .checkbox {
  text-align: left;
}
.form-sign-in .checkbox label {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 20px 0 25px;

}
.form-sign-in .checkbox input[type="checkbox"] {
  position: absolute;
  padding: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}
.form-sign-in .checkbox em {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: 1px solid #D9D9D9;
  background: #FFF;
}
.form-sign-in .checkbox em::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 6px;
  height: 10px;
  transform: rotate(45deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.form-sign-in .checkbox span {
  display: block;
  margin-left: 8px;
  /*color: #000;*/
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}
.form-sign-in .checkbox input[type="checkbox"]:checked ~ em {
  background: #123284;
  border-color: #123284;
}

.form-floating>.form-control:not(:placeholder-shown) {
  padding-left: 20px;
}
.form-sign-in .form-floating + .form-floating {margin-top: 20px;}

.btn-primary {
  height: 60px;
  font-weight: 500;
  font-size: 18px;
  border-radius: 10px;
  background: #123284;
  border: none;
}

