/* common */
body, div, dl, dt, dd, ul, ol, li, form, input, textarea, p {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

[v-cloak] {
  display: none;
}

/* body */
#browser_index {
  background: #e9e9e9;
  color: #5e5e5e;
  font: 400 87.5%/1.5em 'Open Sans', sans-serif;
}

/* Form Layout */
.form-wrapper {
  margin: 2em auto;
  position: relative;
  background: #fafafa;
  padding: 2.5em;
  width: 80%;
  max-width: 900px;
  text-align: center;
}
.app-modal .form-wrapper {
  /*  アプリ版対応  */
  position: relative;
  background: #fff;
  text-align: center;
  width: 85vw;
  margin: 0 auto;
  padding: 1em;
}

form {
  padding: 0 1.5em;
}

.form-item {
    margin-bottom: 0.75em;
    width: 95%;
    text-align: left;
}

.form-item.auto_login {
  display: flex;
  align-items: center;
  justify-content: start;
  user-select: none;
}

.form-item input {
    background: #e9e9e9;
    border: none;
    border: 2px solid #e9e9e9;
    color: #666;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    height: 50px;
    width: 100%;
    padding: 0 5px;
}

.form-item input:focus {
  outline: 2px solid #9fcbf1;
}

.form-item input[type="checkbox"] {
  width: 20px;
  margin: 0 8px;
}

.form-item input[type="checkbox"]:focus {
  outline: none;
}

.form-panel {
    margin: 2em 0 0;
    width: 100%;
    font-size: 14px;
}

.form-panel > div {
  display: block;
  margin-bottom: 20px;
}

.form-panel p.caution {
  text-align: center;
  color: red;
  padding-bottom: 5px;
}

.form-wrapper h1 {
  margin: 0;
}
.form-wrapper h2 {
  font-size: 20px;
  text-align: center;
  border-bottom: solid 2px #e1e1e1;
  padding-bottom: 0.5em;
  margin-bottom: 1.5rem;
}
.form-wrapper h3 {
  /*  アプリ版対応  */
  font-size: 20px;
  text-align: center;
  border-bottom: solid 2px #e1e1e1;
  padding-bottom: 0.5em;
  margin-bottom: 1.5rem;
}
.form-wrapper > p {
  text-align: center;
  margin-bottom: 0.67em;
}

.form-wrapper #logo {
  width: 70%;
  max-width: 450px;
  margin: 35px 0;
}

.form-wrapper > div {
  display: flex;
}
.form-wrapper > div > section:nth-of-type(1) {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  padding-right: 5%;
  margin-right: 5%;
  border-right: solid 1px #e1e1e1;
}
.form-wrapper > div > section:nth-of-type(2) {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.form-wrapper > div > section:nth-of-type(2) li + li {
  margin-top: 1.5rem;
}

#social-buttons {
  padding: 20px;
}

.form-wrapper .terms {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

.form-wrapper .terms p {
  color: -webkit-link;
  cursor: pointer;
  text-decoration: underline;
}

/* button */
.form-panel .button {
  -webkit-appearance: none;
  background: #337ab7;
  border: none;
  color: #fff;
  cursor: pointer;
  height: 40px;
  letter-spacing: 0.05em;
  transition: background 0.3s ease-in-out;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
}

.form-panel .button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

::-ms-reveal {
  display: none;
}

.passwordBox {
position:relative;
}

.eye_open {
background: url("../common_bookshelf/eye_open.png");
background-size: contain;
width: 100%;
height: 100%;
position: absolute;
cursor: pointer;
}

.eye_close {
background: url("../common_bookshelf/eye_close.png");
background-size: contain;
width: 100%;
height: 100%;
position: absolute;
cursor: pointer;
}

.field-icon {
position: absolute;
top:15px;
right: 0px;
width: 25px;
height: 25px;
}