.container {
    height: 100%;
}

.sectionWrap {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.formArea {
    width: 40%;
}

.headingSec {
    margin: 0 0 30px;
}

.rightSec {
    background: #4253ef;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 6%;
    justify-content: center;
    border-radius: 20px;
    width: 50%;
    color: #fff;
}

@media (max-width: 767px) {
    .formArea {
        width: 100%;
        max-width: 500px;
    }
    .rightSec {
        width: 100%;
        max-width: 500px;
        min-height: auto;
        padding: 4%;
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }
    .sectionWrap {
        flex-direction: column;
        gap: 30px;
        justify-content: flex-start;
    }
    h1 {
        font-size: 18px;
        line-height: 30px;
    }
    .loginImg {
        width: 100px;
    }

    .headingSec {
        margin: 0;
    }

    .headingSec p {
        display: none
    }
}