@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

*{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}
  
body {
    height: 100%;
}

.main-content{
    background-color: #F5F5F5;
    width: 100%;
    height: 100%;
}


img.logo-img {
    width: 230px;
    height: auto;
    }

.main{
    background-color: #FFFFFF;
    width: 450px;
    height: 290px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%)
               translateY(-50%);
    border-radius: 8px;
    box-shadow: 1px 4px 9.1px 3px #3232324a;
}

.tittle{
    text-align: center;
}

.input-area{
    display: grid;
}

.input-id{
    width: 92%;
    height: 42px;
    margin: 16px 16px 0px 16px;
    box-sizing: border-box;
    border: 2px solid #BFBFBF;
    border-radius: 8px;
}

.input-pass{
    width: 92%;
    height: 42px;
    margin: 5px 16px 10px 16px;
    box-sizing: border-box;
    border: 2px solid #BFBFBF;
    border-radius: 8px;
}

::placeholder {
    color: #BFBFBF;
  }

.care{
  margin: 0px 16px 0px 16px;
}

.errmsg{
  display: block;
  font-size: 14px;
}

.button-area{
  margin: 16px 16px 0px 16px ;
}

.login-button{
  width: 100%;
  height: 50px;
  text-align: center;
  border-radius: 8px;
  background-color: #CC0000;
  color: #FFFFFF;
  border: 1px solid #CC0000;
  font-weight: 600;
  cursor: pointer;
}

.login-again{
  margin: 20px 0px 0px 39px;
}

.reduction{
  font-size: 10px;
}

a{
  color: #858585;
}

.input-container {
  position: relative;
  display: inline-block;
}

.input-icon {
  position: absolute;
  left: 30px;
  top: 67%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #BFBFBF;
}

.input-icon2 {
  position: absolute;
  left: 30px;
  top: 48%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #BFBFBF;
}

.input-icon3 {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #BFBFBF;
  right: 30px;
}

input[type="text"] {
  padding-left: 40px; 
  padding-right: 40px;
  width: 93%; 
  height: 40px; 
  font-size: 16px;
  border: 1px solid #BFBFBF;
  border-radius: 5px;
}

input[type="password"] {
  padding-left: 40px; 
  padding-right: 40px;
  width: 93%; 
  height: 40px; 
  font-size: 16px;
  border: 1px solid #BFBFBF;
  border-radius: 5px;
}

.toggle-password {
  position: absolute;
  right: 7%;
  top: 46%;
  transform: translateY(-50%);
  cursor: pointer;
}

.logo{
  display: flex;
  justify-content: center;
}
.content-wrappr{
  margin: 5% 5%;
}


@media (max-width: 450px) {

  .summary-area{
    height: 100%;
  }

  .main {
    width: 100%;
    height: 100%;
    align-content: center;
    padding: 10% max(2%, 10px);
  }

  a{
    font-size: 14px;
  }

  .button-area {
    width: 93%;
  }

}
