﻿body {
    background-color: #edf2f7 !important;
    margin: 0;
    padding: 0;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 20px;
    height: 100vh;
    box-sizing: border-box;
}

.card-left,
.card-right {
    border-radius: 37px;
    overflow: hidden;
}
.card-left-content {
    height:100%;
}

.card-left {
    width: 520px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 50px 40px;
    height: calc(100vh - 40px);
    max-height: 797px;
}

.card-left-header{
    margin: 10vh 0;
}

.card-right {
    width:100%;
    max-width: 875px;
    height: calc(100vh - 40px);
    max-height: 797px;
    background-image: url('../img/rightSide.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

/*@media (max-height: 839px) {
    .card-left {
        height: 725px;
    }

    .card-right {
        width: 800px;
    }
}*/
@media (max-height: 839px) {
    .card-left {
    }

    .card-right {
    }
}

@media screen and (max-width: 768px) {
    .login-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
        padding: 15px;
        box-sizing: border-box;
    }

    .card-left {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 20px;
        box-shadow: none;
    }

    .card-right {
        display: none !important;
    }

    .logoImage {
        width: auto;
        max-width: 100%;
        height: auto !important;
        max-height: 44px;
    }

    .form-control-nd {
        height: 48px;
        font-size: 16px;
    }

    .btn-customND {
        height: 48px;
        font-size: 16px;
        font-weight: bold;
    }

    .inner-content .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
}