.content {
            height: calc(100vh - 40px);
            display: flex;
        }

        .set-bg {
            width: 60%;
            height: 98vh;
        }

        .set-content {
            width: 40%;
            padding: 20px;
            height: 94vh;
        }

        .set-logo {
            width: 100px;
            float: right;
        }

        .set-color {
            color: #2bb673;
            font-weight: 700;
            font-size: 50px;
        }

        .set-fillcontent {
            width: 70%;
        }

        .set-textbox {
            width: 100%;
            display: block;
            border: 0px;
            border-bottom: 1px solid #828282;
            padding: 8px;
            margin-bottom: 20px;
        }

        textarea:focus, input:focus {
            outline: none;
        }

        .footer {
            background-color: #2bb673;
            height: 40px;
            text-align: right;
            position: relative;
            padding: 10px;
        }

        .footer-content {
            color: #fff;
            font-weight: 500;
            font-size: 16px;
        }

        .set-button {
            display: block;
            margin: auto;
            color: #fff;
            background-color: #2bb673;
            border: none;
            padding: 10px 20px;
            font-weight: 600;
            font-size: 16px;
        }

        .set-fp {
            float: right;
            margin-top: -50px;
            color: #2bb673;
            text-decoration: none;
        }

            .set-fp:focus, .set-fp:hover {
                color: #2bb673;
                text-decoration: none;
            }

        .set-bold {
            font-weight: 600;
        }

        @media (max-width: 991px) {
            .content {
                overflow: overlay;
            }

            .set-bg {
                display: none;
            }

            .set-content {
                width: 100% !important;
            }

            .set-fillcontent {
                width: 100%;
                margin-bottom: 30px;
            }
        }