.container-fluid {
    padding: 0;
}

.first-col,
.second-col {
    padding: 20px 40px;
    background: white;
    min-height: 700px;
    height: 100vh;
}

.first-col {
    background: #F5F5F5;
}

.logo-wrapper {
    border: 26px solid #EBECF8;
    border-radius: 250px;
    overflow: hidden;
    width: 320px;
    height: 320px;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-wrapper img {
    max-width: 100%;
}

.logo-admin img {
    width: 180px !important;
}

.footer {
    background: white;
    width: 100%;
    left: 0;
    font-family: "Poppins";
    font-size: 14px;
}

.form-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    max-width: calc(100vw - 60px);
}

.form-wrapper h4.title {
    font-family: Poppins;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 30px;
    padding: 2px;
}

.checkbox label::after {
    top: 0 !important;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .logo-wrapper {
        width: 250px;
        height: 250px;
    }

    .form-wrapper {
        width: 420px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .logo-wrapper {
        width: 200px;
        height: 200px;
    }

    .form-wrapper {
        width: 350px;
    }
}

@media (max-width: 767px) {

    .first-col,
    .second-col {
        min-height: 0;
        height: auto;
    }

    .logo-wrapper {
        width: 200px;
        height: 200px;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }

    .container-fluid {
        padding-bottom: 100px;
        background: white;
    }

    .logo {
        display: block !important;
    }

    .form-wrapper {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
}