body {
    background-color:#fff5e1;
    text-align: center;
    margin: 0;
    padding: 0;
   
}
form{
    max-width: 500px;
    height: 320px;
    margin:  auto;
    background-color:#ffffff;
    padding: 10%;
    border-radius: 50px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    opacity: 0.8;

  

}

.form-control{
    border: solid 1px;
    border-radius: 30; /* 下線の角を丸めない場合は削除または設定しないでください */
    padding: 0;
    width: 300px;
margin-left: 30px;
}

.submit{
    background-color: #6ff;   
    padding-top: auto;

}
.submit:hover{
    background-color:#6ff;
}
.submit:active{
    background-color: black;
    transform: translateY(5px);
}
.change{
    width: 100px;
}
.change:active{
    transform: translateY(5px);
}

canvas{
    padding: 10px;
}
.check-name{
    margin-left: 5%;
}
.checkbox{
     border: solid 1px;
}
/*@keyframes movea {
    0% { transform: translateX(100); }
    100% { transform: translateX(-1080px); } /* 100px分右に動かす例 */

.moving-image {
    margin-right: 10px;
    width: 50px;
    height: 50px;
   /* animation: movea 5s linear infinite; アニメーションの設定 */
}