body {
  background:#edf1f3;
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  font-size: 14px;
  line-height: 1.6em;
  color: #444444;
  padding-top:30px;
}
.todoAppwrapper{
  max-width:550px;
  margin:0 auto;
  background:#ffffff;
  box-shadow:0 7px 12px -7px #777777;
  border-radius:7px;
}
a{
  color:#676565;
  text-decoration: none;
}
h1{
  margin:0;
}

.header{
  text-align:center;
  padding: 20px 0;
  background:rgb(37,75,168);
  background:linear-gradient(
    126deg,
    rgba(37,75,0.9)
    rgba(60,97,147,1) 87%
  );
  border-radius:5px 5px 0 0;
  color:#ffffff;
}

.taskwrapper{
  display:flex;
  justify-content:space-between;
  padding:20px;
  border-top:1px solid #f0f0f0;
}

.taskwrapper:last-child{
  border-bottom:1px solid #f0f0f0;
}

.taskcompletedicon{
  height:20px;
  width:20px;
  background: lightgreen;
  border-radius: 50%;
  margin-right:10px;
}

.taskincompletedicon{
  height:20px;
  width:20px;
  background: lightpink;
  border-radius: 50%;
  margin-right:10px;
}

.tasktitle{
  display:flex;
}

.loginAndLogout{
  padding:20px;

}

.loginAndLogout a{
  color:lightcoral;
}

.editbutton{
  color:rgb(13, 157, 150);
  padding:10px;
}

.deletebutton{
  color:rgb(237, 77, 77);
  padding:10px;
}

.searchwrapper{
  display:flex;
  justify-content: space-between;
  padding:10px 20px;
  align-items: center;
}

.searchinput{
  height:25px;
  width:180px;
  outline:none;
  border:1px solid lightseagreen;
  border-radius: 5px;
  padding:2px 4px;
}

.searchbutton{
  border:1px solid lightseagreen;
  padding:4px 10px;
  border-radius: 5px;
  color:lightseagreen;
  background: #fafafa;
  cursor:pointer;
  font-size:14px;
  transition: all 0.6s;
}

.searchbutton:hover{
  background: lightseagreen;
  color:white;
}

.addbutton{
  font-size:30px;
  color:lightseagreen;
}

.editform{
  padding:20px;
}  

label{
  display:block;
}

.editform input[type="text"],.editform input[type="password"]{
  width:100%;
  height:25px;
  outline:none;
  border:1px solid lightseagreen;
  border-radius: 5px;
  padding:2px 4px;
}

.editform textarea{
  width:100%;
  height:120px;
  outline:none;
  border:1px solid lightseagreen;
  border-radius: 5px;
  padding:2px 4px;
}

.editform div{
  margin-bottom:10px;
}

.accnt{
  padding:20px;
  border:1px solid #f0f0f0;
}

.accnt p{
  margin-top:0;
}

.detailwrapper{
  padding:20px;
}