body * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
}

.wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.container {
  position: relative;
  max-width: 440px;
  width: calc(100% - 48px);
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.logo {
  margin: 0 auto 60px;
}

.input-area {
  width: 100%;
  position: relative;
}

.inputbox {
  width: 100%;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #0f2517;
  color: #ffffff;
  font-size: 14px;
  padding-left: 24px;
  padding-top: 25px;
  outline: 1px solid #0f2517;
}

.inputbox:focus {
  outline: 1px solid #23a353;
  transition: all 0.5s;
}

.placeholder {
  font-family: 'AppleSDGothicNeoM00';
  position: absolute;
  color: #bdbdbd;
  font-size: 14px;
  top: 17px;
  left: 24px;
  transition: all 0.5s;
}

.placeholder.activated {
  font-size: 10px;
  top: 8px;
}

.btn-login {
  width: 100%;
  height: 62px;
  border-radius: 8px;
  background-color: #23a353;
  color: #ffffff;
  font-size: 16px;
  font-family: 'AppleSDGothicNeoB00';
  margin-bottom: 24px;
  cursor: pointer;
}

hr {
  width: 100%;
  border: 1px solid #23a353;
  margin-bottom: 18px;
}

.company {
  font-family: 'AppleSDGothicNeoM00';
  font-style: normal;
  font-size: 12px;
  color: #bdbdbd;
  text-align: center;
}

.chk-area {
  position: relative;
  margin-bottom: 18px;
}

label {
  font-family: 'AppleSDGothicNeoM00';
  font-style: normal;
  font-size: 14px;
  color: #bdbdbd;
}

.checkbox {
  display: none;
}

.checkbox + label {
  margin-left: 26px;
  cursor: pointer;
}

.checkbox + label::before,
.checkbox:checked + label::before {
  content: url('/assets/icon/CheckSquare.svg');
  position: absolute;
  left: 0px;
  top: -2px;
  cursor: pointer;
}

.checkbox:checked + label::before {
  content: url('/assets/icon/CheckSquare_Green.svg');
}

input:-webkit-autofill {
  -webkit-text-fill-color: #ffffff;
  -webkit-box-shadow: 0 0 0 1000px #0f2517 inset;
  box-shadow: 0 0 0 1000px #0f2517 inset;
  border: 8px solid #0f2517;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .logo {
    margin-bottom: 40px;
    width: 160px;
  }
  .inputbox {
    height: 48px;
  }
  .btn-login {
    height: 54px;
  }
}

@media (max-width: 768px) {
  .wrapper {
    background-color: #001709;
  }
  .container {
    padding: 0 4px;
  }
}
