html, body {
    height: 100%;  /* ページ全体の高さを100%に */
    margin: 0;     /* 余白をリセット */
    padding: 0;
}
  
.container {
background-color: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
margin-top: 20px;
margin-bottom: 60px;
min-height: calc(100vh - 80px);  /* ビューポート全体の高さを確保（上下のマージン分を引く） */
}
  


.center-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
