@charset "utf-8";

:root {
  --smart-primary: #6200ee;
  --smart-cart-max-width: 400px;
}

body {
  margin: 0px;
  padding: 0px;
  background-color: #fafafa;
  display: flex;
  flex-direction: row;

  width: 100vw;
  height: 100vh;
}

body > div:nth-child(1) {
  flex-grow: 1;
  background-image: url('/common/img/login_bg.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}

body > div:nth-child(1) > img {
  width: 190px;
  object-fit: contain;
  height: fit-content;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}

body > div:nth-child(2) {
  width: fit-content;
  padding: 0 10rem;

  background: #ffffff;
}

body > div:nth-child(2) > div {
  width: var(--smart-cart-max-width);
}

smart-card {
  max-width: var(--smart-cart-max-width);
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}

smart-card > .smart-container {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0);
}

smart-button,
smart-password-text-box,
smart-text-box {
  display: block;
  width: 100%;
  margin-top: 30px;
}

smart-button {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.6);
}

h1 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  margin-top: 10px;
  margin-bottom: 50px;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  font-weight: 100;
  font-size: 26px;
  text-align: center;
}

smart-check-box {
  margin-top: 15px;
  margin-left: -8px;
}

.material-icons {
  color: white;
  background-color: #e10050;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

smart-text-box[label] .smart-label {
  margin-top: 10px;
}

.note {
  color: white;
  background-color: orange;
  display: inline-block;
  width: 18px;
  height: 18px;
  font-size: 16px;
  font-weight: bold;
  margin-right: 10px;
  border-radius: 3px;
}

.tit2 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.titleWrap {
  width: 100%;
}

.titleWrap h2 {
  font-size: 26px;
  font-weight: 800;
  line-height: 180%;
}

.titleWrap .text {
  margin-bottom: 30px;
  font-size: 16px;
}

.titleWrap .bold {
  font-weight: 800;
}

.text {
  font-size: 13px;
}

#login-form > input {
  width: 100%;
  height: 48px;
  padding: 0 10px;
  box-sizing: border-box;
  margin-bottom: 16px;
  border-radius: 6px;
  background-color: #f0f0f0;
}

#login-form > input::placeholder {
  color: #d2d2d2;
}

#login-form > input[type='submit'] {
  color: #fff;
  font-size: 16px;
  background-color: #468fee;
  margin-top: 20px;
  cursor: pointer;
}

#login-form > input[type='submit']:hover {
  background-color: #036eb8;
  transition: 0.3s;
}

#login-form > input[type='checkbox'] {
  display: none;
}

#login-form > label {
  color: #999999;
}

#login-form input[type='checkbox'] + label {
  cursor: pointer;
  padding-left: 26px;
  background-image: url('checkbox.png');
  background-repeat: no-repeat;
  background-size: contain;
}

#login-form input[type='checkbox']:checked + label {
  background-image: url('checkbox-active.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.inputbox .find {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
}

.inputbox .find li {
  display: inline-block;
  font-size: 14px;
  line-height: 1em;
}

.inputbox .find a {
  color: #bbb;
}

.inputbox .find .strong a {
  color: #050505;
  margin-left: 5px;
}

.inputbox .find li + li::before {
  content: ' ';
  display: inline-block;
  width: 1px;
  height: 8px;
  margin-top: -4px;
  background: #bbb;
}

.snslogin {
  text-align: center;
  margin-top: 40px;
}

.snslogin a {
  margin: 0px 20px;
}
