@charset "UTF-8";
  body{
  background-color:#e4edf4;
  }
  #container {
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin:0 auto;
  }
  .wrap{
  color:#0058A5;
  text-align:center;
  font-size:0.9rem;
  }
  .inner{
    background-color: #ffffff;
    color: #1f334c;
    padding: 40px 20px 40px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);
    height: 250px;
    width: 550px;
    display:flex;
    justify-content:space-around;
    flex-direction:row;
    margin-bottom:10px;
  }
  .logo_pc{
  width:150px;
  margin-top: 20px;
  }
  .logo_sp{
  display:none;
  }
  .input{
  margin-left: 20px;
  }
  .textbox{
  border:0;
  padding:10px;
  font-size:1.3em;
  color:black;
  border:solid 1px #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display:block;
  width:270px;
  }
  .text-wrap{
  text-align:left;
  display: block;
  margin:0 auto;
  }
  
  .btn{
  border:solid 1px #ccc;
  padding:10px 30px;
  margin:20px 0 0px;
  font-size:1em;
  text-transform:uppercase;
  color:#ffffff;
  width:290px;
  cursor:pointer;
  background:#0058A5;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  } 
  .successbox{
    text-align:left;
    white-space: pre-wrap;
    max-width:500px;
    margin:0 auto;
    border:solid 1px #66c7ff;
    background:#aedff1;
    color:#2160c4;
    display:flex;
    justify-content:center;
    margin-bottom: 10px;
    padding: 7px 5px 2px;
    align-items: center;
    font-weight: bold;
    font-size: 1.0rem;
    }
  .errorbox{
  text-align:left;
  white-space: pre-wrap;
  max-width:500px;
  margin:0 auto;
  border:solid 1px #FF6666;
  background:#FDEFF2;
  color:#FF0000;
  display:flex;
  justify-content:center;
  margin-bottom: 10px;
  padding: 7px 5px 2px;
  align-items: center;
  font-weight: bold;
  font-size: 1.0rem;
  }
  .errorbox img{
  width:30px;
  margin-right:10px;
  }
  .errorMessage{
  color:#FF0000;
  }
  .errorMessage img{
  width:15px;
  margin-right:10px;
  }
  .password-inputarea{
  margin-top:15px;
  }
  @media screen and (max-width: 768px) {
  .inner{
    height: auto;
    width: 90%;
    flex-direction:column;
  }
  .logo_sp{
  display:block;
  margin: 0 auto 20px;
  }
  .logo_pc{
  display:none;
  }
  .btn,.text-wrap{
   width: 80%;
   }
   .textbox{
   width: 95%;
   }
  .input{
  margin-left: 0px;
  }
  #container {
  width: 90%;
  }
  .errorbox{
  width: 85%;
  margin: 60px auto 10px;
  text-align: left;
  }
  }
  .field-icon {
  color: #555;
  float: right;
  margin-right: 15px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
/* IE/EDGEのinput type=password の目のアイコン非表示 */
input::-ms-reveal {
    visibility:hidden
}
/* IEのinput type=text の削除アイコン非表示 */
input::-ms-clear {
    visibility:hidden
}
