.section-9 {
    margin: 35rem 3rem 10rem 3rem;
}

.section-9 .container {
    position: relative;
}

.form-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 6rem 0rem 6rem 0rem;
    z-index: 10;
    position: relative;
}

.form-wrapper .form-bg {
    position: absolute;
    height: 100%;
    width: 120%;
    background: rgba(199, 208, 255, 0.3);
    backdrop-filter: blur(1.5rem);
    border-radius: 2rem;
    top: 0;
    bottom: 0;
    transform: translate(-8.5%, 0%);
}

.question-mark {
    position: absolute;
    z-index: -2;
}

.mark-1 {
    bottom: 0;
    left: 40%;
}

.mark-2 {
    bottom: 0;
    left: 5%;
}

.mark-3 {
    top: 0%;
    right: 0%;
}

.mark-4 {
    top: 0;
    left: 30%;
}

.section-9 .form-wrapper .left-sect h3 {
    font-weight: 600;
}

.section-9 .form-wrapper .left-sect p {
    font-weight: 400;
    width: 79%;
    margin-top: 3rem;
}

.section-9 .form-wrapper .right-sect .form-sect-9 {
    width: 100%;
    height: 100%;
    padding: 0rem 0rem 0rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-sect-9 .input-place {
    display: flex;
    flex-direction: row;
    background: transparent;
    padding: 0px;
    align-items: center;
}

.form-sect-9 .input-place .input-data {
    height: 2rem;
    width: 100%;
    position: relative;
}

.form-sect-9 .input-place .input-data input {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    border-bottom: 1px solid #202B50;
    color: #202B50;
    border-radius: 0 !important;
}

.form-sect-9 .input-place .input-data label {
    position: absolute;
    bottom: 0.625rem;
    left: 0;
    color: #202B50;
    pointer-events: none;
    font-size: 0.75rem;
    transition: all 300ms ease;
}

.form-sect-9 .input-place .input-data input:focus~label,
.form-sect-9 .input-place .input-data input:valid~label {
    opacity: 0;
}

.form-sect-9 .input-place .input-data .input-underline {
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
}

.input-underline::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: #202B50;
    transform: scaleX(0);
    transition: transform 300ms ease;
}

.input-data input:focus~.input-underline::before,
.input-data input:valid~.input-underline::before {
    transform: scaleX(100%);
}

.send-sect-9-form-btn {
    position: relative;
    margin: 2.5rem 3rem;
}

.send-sect-9-form-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.25rem;
    border: 1.5px solid transparent;
    background: linear-gradient(90deg, #81CA73, #45B9D5) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.send-sect-9-form-btn p {
    padding: 1.25rem 0rem;
    margin: 0 !important;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    background: linear-gradient(270deg, #45B9D5 0%, #81CA73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    width: 100% !important;
    text-align: center;
}

.send-sect-9-form-btn:hover {
    border-radius: 20px;
    background: linear-gradient(270deg, #45B9D5 0%, #81CA73 100%);
}

.send-sect-9-form-btn:hover>p {
    background: linear-gradient(180deg, #F9FAFF 0%, #F9FAFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

@media screen and (max-width: 1024px) {
    .section-9 {
        margin: 60rem 3rem 30rem 3rem;
    }
    .form-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .mark-1 {
        bottom: 40%;
        left: 60%;
    }
    .mark-2 {
        bottom: 0;
        left: 5%;
    }
    .mark-3 {
        top: 0%;
        right: 0%;
    }
    .mark-4 {
        top: 0;
        left: 30%;
    }
    .section-9 .form-wrapper .left-sect {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .section-9 .form-wrapper .left-sect h3 {
        text-align: center;
    }
    .section-9 .form-wrapper .left-sect p {
        text-align: center;
        margin: 3rem 0px 6rem 0px;
    }
    .form-wrapper .form-bg {
        height: 100%;
        width: 100%;
        transform: translate(0%, 0%);
    }
}