@charset "utf-8";

main{background: var(--background-color)}

.login_wrapper{
  background: #fff;
  border: var(--basic-border);
  width: 30%; height: 90%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 17px;
}

.login_wrap{
  width: 370px; height: 500px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  
  > .log_txt{

    > p{
      color: var(--lighter-font);
    }

    > h2{
      color: var(--point-color);
      font-size: 38px;
      margin: 11px 0 28px 0;
      font-weight: 700;
    }

    > span{
      font-size: 18px;
      font-weight: 600;
    }
  }
}

.idpw > div{
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  
  > img{width: 23px;}

  > input{
    width: 100%;
    padding: 11px 3px;
    border: none;
    box-sizing: border-box;
    border-bottom: var(--base-border);
    background: none;
    font-size: 16px;
  }
}
.idpw > div > input{
  width: 100%;
  padding: 11px 3px;
  border: none;
  box-sizing: border-box;
  border-bottom: var(--basic-border);
  background: none;
  font-size: 16px;
  margin-left: 7px;

  &::placeholder{
    color: var(--lighter-font);
    font-size: 13px;
  }

  &:hover{outline: none;}

  &:focus{outline: none;}
}

.l_btn{
  width: 100%;
  background: var(--point-color);
  border: 1px solid var(--point-color);
  color: #fff;
  border-radius: 100px;
  padding: 9px 17px;
  box-sizing: border-box;
  font-size: 15px;
  cursor: pointer;
  transition: .3s;

  &:hover{
    background: #E44051;
  }
} 



/* 체크박스 */
.idpw > span > label{
  display: flex;
  align-items: center;
}
.idpw > span > input[type="checkbox"]{display: none;}
.idpw > span > label{cursor: pointer;}
.idpw > span > label > .feather{
  width: 18px; height: 18px;
  display: none;
}
.idpw > span > label > .feather-square{color: var(--lighter-font);}
.idpw > span > label > .feather-check-square{color: var(--point-color);}
.idpw > span > input[type="checkbox"]:not(:checked) + label > .feather-square{display: inline;}
.idpw > span > input[type="checkbox"]:checked + label > .feather-check-square{display: inline;}

.idpw > span > label > span{
  font-size: 14px;
  margin-left: 7px;
  color: var(--lighter-font);
}