.form-content {
    padding-bottom: 8rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-form {
    margin-bottom: 4rem;
    width: 68rem;
    position: relative;
}

.form-form>div {
    position: absolute;
    bottom: 0;
    padding: 1.2rem 2rem;
    text-align: right;
    width: 100%;
    color: #999999;
    font-size: 1.4rem;
}

.form-form>span {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.4rem;
    color: #fff;
}

.form-form>input {
    width: 100%;
    height: 4.8rem;
    margin-top: 2rem;
    padding: 1.2rem 2rem;
    font-size: 2rem;
    line-height: 2.4rem;
    border-radius: 0.4rem;
}

.form-form>textarea {
    width: 100%;
    height: 10.2rem;
    margin-top: 2rem;
    padding: 1.2rem 2rem;
    font-size: 2rem;
    line-height: 2.4rem;
}

.form-btn {
    margin-top: 4rem;
    width: 14rem;
    height: 4.4rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F16522;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.9rem;
    margin-left: 63rem;
}

.form-btn:hover {
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .form-content {
        padding-bottom: 4rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .form-form {
        margin-bottom: 1.6rem;
        width: 16.4rem;
        position: relative;
    }

    .form-form:nth-last-child(3),
    .form-form:nth-last-child(2) {
        width: 100%;
        ;
    }

    .form-form>div {
        position: absolute;
        bottom: 0;
        padding: 0.8rem;
        text-align: right;
        width: 100%;
        color: #999999;
        font-size: 1.2rem;
    }

    .form-form>span {
        font-size: 1.4rem;
        font-weight: 500;
        line-height: 1.8rem;
        color: #fff;
    }

    .form-form>input {
        width: 100%;
        height: 3.2rem;
        margin-top: 0.8rem;
        padding: 0.8rem;
        font-size: 1.2rem;
        line-height: 1.6rem;
        border-radius: 0.4rem;
    }

    .form-form>textarea {
        width: 100%;
        height: 6.8rem;
        margin-top: 0.8rem;
        padding: 0.8rem;
        font-size: 1.2rem;
        line-height: 1.5rem;
    }

    .form-btn {
        margin-top: 4rem;
        width: 12rem;
        height: 3.1rem;
        border-radius: 0.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #F16522;
        color: #fff;
        font-size: 1.2rem;
        line-height: 1.5rem;
        margin-left: 11.5rem;
    }

    .form-btn:hover {
        cursor: pointer;
    }
}