:root {
    --main-text-color: #566F96;
}

.nav-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    color: #566F96;
}


.nav-logo {
    display: block;
    background-image: url('/assets/pictures/Planet\ \(logo\).svg');
    background-position: center;
    background-repeat: no-repeat;
    width: 40px;
    height: 30px;

}

.nav-title{
    display: block;
    font-weight: 600;
    font-size: 18px;
    line-height: 2em;
    border-left: 1px solid var(--main-text-color);
    padding-left: 20px;
    margin-left: 20px;
}

ul{
    padding: 0;
}

.nav-menu-wrapper .nav-menu-item {
    font-size: 14px;
    line-height: 100%;
    padding-left: 32px;
}

.nav-menu-wrapper li{
    display: inline;
    list-style: none;
}

.nav-menu-icon {
    display: inline-block;
    background-image: url(/assets/icons/Icon.svg);
    background-position: center;
    width: 16px;
    height: 16px;
}

.menu-button{
    display: none;
    background-image: url(/assets/pictures/-menu.png);
    background-position: center;
    background-size: cover;
    height: 36px;
    width: 24px;
    margin-right: 10px;
    border-radius: 2px;
}

body {
    font-family: Roboto;
    background-image: url('/assets/pictures/Bg.svg');
    background-size: cover;
    min-width: 340px;
}

.wrapper{
    height: 100vh;
}

.registration-form-wrapper {
    display: flex;
    justify-content: space-around;
}

.registration-form-image {
    min-height: 400px;
    max-height: 500px;
    min-height: 50%;

}

.form-card {
    max-width: 430px;
    min-width: 350px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 2px 3px var(--main-text-color);;

}

.form-title {
    font-size: 30px;
    line-height: 36px;
    min-width: 300px;
}

.form-wrapper {
    min-width: 50%;
    padding: 48px;
    height: 100%;
}

.registration-form{
    width: 70%;
}

.form-label {
    padding: 24px 0 8px 0;
    font-size: 16px;
    line-height: 16px;
}

.form-submit-button {
    margin-top: 40px;
    margin-left: 0;
}


.footer {
    padding: 20px 0;
    width: 100%;
    text-align: center;
    color: #566F96;
}

@media (max-width: 992px) {
    .registration-form-image{
        height: 80vh;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {

    .wrapper{
        overflow-x: hidden;
        position: relative;
    }

    .nav-menu-wrapper-activ{
        background-color: rgba(7, 7, 29, 0.833);
        text-align: center;
        position: absolute;
        top: 10px;
        right: 15%;
        border-radius: 5px;
        z-index:99;
    }

    .nav-menu-wrapper-activ li{
        display: block;
        border-bottom: 1px solid var(--main-text-color);
        padding: 5px 10px;
    }

    .nav-menu-wrapper-activ  li:last-child{
        border: 0;
    }

    .nav-menu-wrapper-activ .nav-menu-item{
        list-style: none;
    }

    .registration-form-image{
        position: absolute;
        top: 22%;
        left: 30%;
        height: 450px;
    }

    .form-card {
        margin: 0 15px;
        max-width: 390px;
        width: 85%;
        min-width: 300px;
    }

    .form-submit-button {
        width: 100%;
    }

    .form-title {
        font-size: 30px;
        line-height: 36px;
        min-width: 300px;
    }
    
    .form-card {
        z-index: 98;
    }

    .registration-form{
        width: 100%;
    }

    .form-wrapper {
        padding: 62px;
        min-width: 100%;
    }

    .nav-bar-wrapper {
        padding: 20px 15px;
    }

    .nav-menu-wrapper {
        display: none;
    }


    .nav-logo-wrapper {
        padding: 0;
    }

    .nav-logo {
        left: 0;
    }

    .menu-button{
        display: block;
    }

    .registration-form-wrapper {
        justify-content:center;
    }    
}