        .header-image {
            position: relative;
            width: 100%;
            height: 210px;
            /* 必要に応じて調整 */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #backButton {
            margin-top: 20px;
        }

        #registerForm {
            margin-top: 30px;
        }

        #email {
            display: block;
            margin-bottom: 30px;
        }

        #submitButton {
            border: none;
            background-color: #0b0b0b9a;
            color: white;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 10px;
            cursor: pointer;
        }

        #submitButton:hover {
            background-color: #4b4a4a;
        }

        input {
            border: 2px solid #333;
            background-color: transparent;
            padding: 10px 15px;
            font-size: 16px;
            border-radius: 25px;
            outline: none;
            color: #333;
        }

        @media (max-width: 768px) {

        /* ボディとHTMLのマージンとパディングをリセット */
        html,
        body {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            /* 高さを100%に設定 */
            display: flex;
            flex-direction: column;
        }

        .main-content {
            flex: 1;
            /* コンテンツエリアが残りのスペースを占有 */
            background-color: #fff;
            padding: 10px 30px;
        }

            .header-image {
                width: 100%;
                height: 150px;
                background-size: cover;
                background-position: center;
            }
        }