
.registration-cv {
    width: 100%;
    max-width: 60%;
    min-height: 600px;

    background: #7cfacc;

    border-radius: 25px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(1.5px);
    overflow: hidden;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap
}


.registration-cv .img-container {
    flex: 2;
    background-image: url("/static/registration/img/png/login_test_img.bfa015f80497.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    min-width: min-content;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


.registration-cv .form-container {
    flex: 3;
    z-index: 3;
    height: 100%;
    user-select: none;
    min-height: 100%;
    min-width: 304px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;

    border-radius: 0 0 0 25px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(1.5px);
    overflow: hidden;
    background: #FCFEFF;

    padding: 40px 25px;
}

.registration-cv .form-container .title {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--primary-font);
    font-weight: 700;
    line-height: 120%;
    font-size: 26px;
    text-align: center;
}

.registration-cv .form-container form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.custom-container {
    overflow: auto;
    height: 100dvh
}


.centred-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 648px
}


.custom-container .header-slogan {
    padding: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;

    gap: 24px;
    background: rgba(28, 27, 31, 0.73);

}

.custom-container .header-slogan .container-logo {
    flex: 1;


}

.custom-container .header-slogan .container-logo p {
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    font-family: var(--primary-font);
    font-size: 40px;
    line-height: 120%;
    font-weight: 700;
    white-space: nowrap;
}

.custom-container .header-slogan .container-slogan {
    flex: 3;
}

.custom-container .header-slogan .container-slogan p {
    padding: 0;
    margin: 0;
    color: #FFFFFF;
    font-family: var(--primary-font);
    font-size: 24px;
    line-height: 120%;
    font-weight: 500;
    white-space: wrap;
}


@media (max-width: 977px) {
    .registration-cv {
        max-width: initial;
        flex-direction: column;
    }

    .registration-cv .form-container {
        flex: 3;
        width: 100%;

        border-radius: 0;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(1.5px);
        overflow: hidden;
        background: #FCFEFF;

        padding: 40px 25px;
    }

    .registration-cv .img-container {
        /*min-height: 30vh;*/
        flex: initial;
        width: 100%;
    }

    .custom-container {
        overflow: auto;
        height: 100dvh
    }

    .centred-container {
        height: auto;
    }

}
