body {
    margin: 0;
    padding: 0px;
    background: #f4f4f4;
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*gap: 20px;*/

    form {
        width: 100%;
        max-width: 550px;
        text-align: center;
        background: #ffffff;

        > div {
            padding: 16px 30px;
        }

        .label-name {
            width: 100%;
            font-size: 22px;
            font-weight: 600;
            color: #757575;
            text-align: left;
        }

        .input {
            width: 100%;
            height: 5rem;
            padding: 8px 0;
            font-size: 20px;
            border: 0;
            border-bottom: 1px solid #d7d7d7;
        }

        .btn {
            height: 6.5rem;
            background: #e65b54;
            width: 100%;
            border: 0;
            border-radius: 33px;
            color: #ffffff;
            font-size: 28px;
            font-weight: 700;
        }

        .xieyi {
            text-align: left;
            color: #8e8e8e;
        }

        a, a:hover {
            color: #488df9;
        }

        .required {
            margin-left: 5px;
            color: #ed4c42;
        }

        .help-block {
            text-align: left;
        }
    }

    .btm {
        width: 100%;
        max-width: 550px;
        height: 6.5rem;
        text-align: center;
        background: #d35a4f;
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 0;

        a {
            color: #ffffff;
            text-decoration: none;
            font-size: 26px;
            font-weight: 600;
        }
    }
}

.image-container img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
}