        body, html {
            height: 100%;
            margin: 0;
            overflow: hidden;
        }
        .背景框架 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            z-index: -1;
        }
        .遮罩层 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 0;
        }
        .表单容器 {
            position: relative;
            z-index: 1;
            background-color: white;
            max-width: 400px;
            padding: 20px;
            padding-bottom: 50px;
            margin: auto;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 8px;
        }
        .表单元素 {
            position: relative;
        }
        .表单元素 .fa-arrow-left {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
        }
        .表单容器 .表单输入.邮箱输入 {
            padding-left: 30px;
            border: none;
            box-shadow: none;
            background-color: #fff;
        }
        .表单容器 .表单输入.文本输入 {
            width: 95%;
            border: none;
            border-bottom: 2px solid #ccc;
        }
        .标题容器 {
            display: flex;
            align-items: center;
        }
        .标题容器 h1 {
            margin-right: 10px;
        }
        @media (max-width: 576px) {
            .表单容器 {
                width: 90%;
                padding: 10px;
            }
            .表单容器 .表单输入.文本输入 {
                width: 100%;
            }
        }