.form_section {
    padding-top: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.form_section .row {
    align-items: flex-end;
}

.form_section h4 {
    font-family: var(--ff-SofiaSans);
    font-weight: var(--fw-800);
    font-size: 30px;
}

.form_section p {
    font-family: var(--ff-SofiaSans);
    font-weight: var(--fw-400);
    font-size: 15px;
}

.form_section .form_wrapper {
    background: linear-gradient(180deg, #f0f6ff, #cbddf8);
    border: 1px solid var(--primary);
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.form_section .form-check-input {
    height: 20px;
    width: 20px;
    padding: 0;
    margin-right: 12px;
    margin-bottom: 25px;
}

.form_section button.common_btn {
    max-width: 215px;
}

/* === Course Image Style === */
.course_img_wrapper {
    text-align: left;
}

.course_img_wrapper img {
    width: 100%;
    object-fit: cover;
}

/* === Course Backgroud Images Style === */
.left_bg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -2;
}

.left_bg img {
    height: 100%;
}

.right_bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    max-width: 660px;
}

.right_bg img {
    max-width: 100%;
}

/* === Animation Area === */
.wave_animation {
    width: 300px;
    height: 300px;
    margin: auto;
    background-color: transparent;
    position: absolute;
    z-index: -1;
    left: -50px;
    bottom: -100px;
}

.box_wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: rgb(100 85 235 / 30%);
    animation: wave_animation 5s ease-in-out infinite;
}

.wave_1 {
    animation-delay: 0s !important;
}

.wave_2 {
    animation-delay: 1s !important;
}

.wave_3 {
    animation-delay: 2s !important;
}

@keyframes wave_animation {
    0% {
        transform: scale(0, 0);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(2, 2);
        opacity: 0;
    }
}