body {
    font-family: 'Poppins', sans-serif;
    line-height: normal;
}

.lg-wrapper {
    display: grid;
    grid-template-columns: minmax(max-content, 30vw) minmax(0, 1fr);
    grid-template-rows: 100%;
    align-items: stretch;
    justify-content: stretch;
    background: #f5f5f5;
    min-height: 100vh;
    max-height: 100vh;
}

/*input col*/
.lg-input-col {
    background: white;
    padding-block: 50px;
    padding-inline: 100px;
    display: flex;
    align-items: center;
    justify-content: stretch;
}

.lg-input-col-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;

    > * {
        width: 100%;
        flex-grow: 1;
    }
}

.lg-input-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.lg-input-title {
    font-weight: 500;
    font-size: 20px;
    color: #111;
    margin-bottom: 20px;
    text-align: center;
}

#bayilikBasvurusuLabel {
    margin-bottom: 10px;
}

#bayilikBasvurusuLabel + .lg-input-message {
    margin-bottom: 20px;
}

#dealerForm > .row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -15px;

    > * {
        padding-inline: 15px;
    }

    .col-12 {
        width: 100%;
    }
}

.lg-input-message {
    font-weight: 400;
    font-size: 13px;
    color: #878787;
    margin-bottom: 30px;
    text-align: center;

    span {
        color: #199719;
    }

    svg {
        display: inline-block;
        vertical-align: middle;
        margin-inline: 3px;
    }
}


/*input*/
.lg-input {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    margin-bottom: 25px;

    .lg-input-inner {
        position: relative;
    }

    .lg-input-icon {
        position: absolute;
        right: 15px;
        top: 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        
        .lg-password-icon {
            cursor: pointer;
        }

        > :not(.active) {
            display: none;
        }
    }

    label {
        z-index: 5;
        position: absolute;
        top: 0;
        left: 20px;
        transform: translateY(-50%);
        background: white;
        padding-inline: 6px;
        color: #212529;
        font-weight: 400;
        user-select: none;
        font-size: 14px;

        & + input {
            border: 1px solid #D3D3D3;
            padding-inline: 15px;
            outline: none;
            width: 100%;
            display: flex;
            font-size: 15px;
            font-weight: 400;
            color: #111;
            border-radius: 6px;
            min-height: 45px;
        }

        & + input:-webkit-autofill,
        & + input:-webkit-autofill:hover,
        & + input:-webkit-autofill:focus,
        & + input:-webkit-autofill:active {
            -webkit-box-shadow: 0 0 0 30px white inset !important;
        }
    }
}

#dealerForm .lg-input {
    margin-bottom: 0;

    & + select {
        border: 1px solid #D3D3D3;
        padding-inline: 15px;
        outline: none;
        width: 100%;
        display: flex;
        font-size: 15px;
        font-weight: 400;
        color: #111;
        border-radius: 6px;
        min-height: 45px;



        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%23505d69' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: calc(100% - 10px) center;
    }

    &:has( + .radio-group) label {
        background: linear-gradient(
                to bottom,
                #ffffff 50%,
                #F1F5F9 50%
        );
    }

    &:has( + select + .select2-container--disabled) label {
        background: linear-gradient(
                to bottom,
                #ffffff 50%,
                #eeeeee 50%
        );
    }
}
/*input end*/

.lg-input-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.lg-input-remember {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 15px;
    position: relative;
    color: #212529;
    max-width: max-content;

    input {
        position: absolute;
        inset: 0;
        user-select: none;
        opacity: 0;
        cursor: pointer;
        margin: 0;
    }

    .checkmark {
        inset: 0;
        height: 20px;
        width: 20px;
        background-color: transparent;
        border: 1px solid #D3D3D3;
        pointer-events: none;
        user-select: none;
        transition: 100ms ease all;
        position: relative;
        border-radius: 3.5px;
    }

    &:hover input ~ .checkmark {
        border-color: #aeaeae;
    }

    input:checked ~ .checkmark {
        border-color: #3C7EEC;
        background-color: #3C7EEC;
    }

    .checkmark:after {
        content: "";
        position: absolute;
        visibility: hidden;
    }

    input:checked ~ .checkmark:after {
        visibility: visible;
    }

    .checkmark:after {
        left: 50%;
        top: 50%;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: translate(-50%,-63%) rotate(45deg);
    }
}

.lg-input-forgot-password {
    font-weight: 500;
    font-size: 15px;
    text-align: right;
    color: #008FC1;
}

.lg-input-login {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3C7EEC;
    color: white;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    padding-block: 11.5px;
    text-decoration: none;
    transition: 300ms ease all;
    width: 100%;
    border: none;
    outline: none;

    &:hover {
        background: #2159b6;
        color: white;
    }
}

.lg-input-register {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ECEDEF;
    color: #737373;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    padding-block: 11.5px;
    text-decoration: none;
    transition: 300ms ease all;
    width: 100%;
    border: none;
    outline: none;

    &:hover {
        background: #dddedf;
        color: #737373;
    }
}

.lg-input-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #8F8F8F;
    font-size: 14px;
    margin-block: 20px;
    gap: 8px;

    &::before,
    &::after {
        content: '';
        flex: 1;
        height: 1px;
        background-color: #8F8F8F;
    }
}



/*image col*/
.lg-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 15px;
    padding-inline: 50px;
}

.lg-image-inner {
    width: 100%;
    flex: 1;
    max-width: 1014px;
}

.lg-image-carousel .owl-stage-outer{
    border-radius: 10px;
}

.lg-image-carousel img {
    width: 100%;
    height: 100%;
    max-height: 552px;
    object-fit: cover;
}

/*image boxes*/
.lg-image-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.lg-image-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    background: white;
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    color: #212529;
}

.lg-image-carousel.owl-theme {

    .owl-nav.disabled + .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        gap: 5px;
    }

    .owl-nav.disabled + .owl-dots .owl-dot span {
        background: #D2D2D2;
        width: 10px;
        height: 10px;
        display: inline-flex;
        transition: 300ms ease all;
        border-radius: 50%;
        border: none;
        margin: 0;
    }

    .owl-nav.disabled + .owl-dots .owl-dot.active span {
        background: #3C7EEC;
        border-radius: 10px;
        width: 25px;
    }

}

.lg-image-box-title {
    font-weight: 500;
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.lg-image-box-desc {
    font-weight: 400;
    font-size: 13px;
}

/*footer col*/
.lg-footer-col {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
    padding-inline: 30px;
    z-index: 3;
}

.lg-footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #878787;
    font-weight: 500;

    a {
        color: #3C7EEC;
        transition: 300ms ease all;

        &:hover {
            color: #2e66c5;
        }
    }

    img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-width: 80px;
    }
}

.lg-footer-ssl {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    font-size: 12px;
    color: #878787;
    font-weight: 500;

    b {
        font-weight: 600;
    }
}

.shine {
    position: relative;
    overflow: hidden
}

.shine:hover::before {
    -webkit-animation: shine 1.2s;
    animation: shine 1.2s
}

.shine::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left,rgba(255,255,255,0) 0%,rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-30deg);
    transform: skewX(-30deg);
    pointer-events: none
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.footer-text {
    width: 100%;
    height: 100%;
    font-size: 15px;
    margin-top: 0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 0px;
    flex-wrap: wrap;
}

.footer_desc {
    color: white;
    font-weight: 500;
    font-size: 15px;
    line-height: normal;
    gap: 3px;

    img {
        filter: grayscale(1) invert(1) brightness(3);
    }
}

.footer_inner {
    background: #20478f;
    border-radius: 10px;
    padding: 10px 50px;

    > .row > div {
        align-self: anchor-center;
    }

    .text-muted {
        color: white !important;
    }
}

.help-block {
    margin-bottom: 0;
}

@media (min-width: 1950px) {
    .lg-wrapper {
        grid-template-columns: minmax(max-content, 35vw) minmax(0, 1fr);
    }
    .lg-image-inner {
        max-width: 1200px;
    }
}

@media (max-width: 1512px) {
    .lg-image-box-title {
        font-size: 18px;
    }

    .lg-input-col {
        padding-inline: 70px;
    }
}

@media (max-width: 1400px) and (max-height: 800px) {
    .lg-input-col {
        padding-inline: 50px;
    }
    .lg-image-carousel.owl-theme .owl-nav.disabled + .owl-dots {
        margin-top: 5px;
    }
    .lg-image-boxes {
        grid-template-columns: repeat(4, 1fr);
        margin-top: 5px;
    }
    .lg-image-box {
        align-items: center;
        padding: 10px;
    }
    .lg-image-box-title {
        font-size: 16px;
        margin-top: 10px;
        text-align: center;
    }
    .lg-image-box-icon {
        max-height: 45px;
        width: auto;
    }
    .lg-image-box-icon svg {
        width: auto;
        height: 100%;
    }
    .lg-image-box-desc {
        font-size: 13px;
        text-align: center;
    }
}

@media (max-width: 1114px) {
    .lg-image-boxes {
        grid-template-columns: repeat(2, 1fr);
    }

    .lg-image-col {
        padding-block: 25px;
    }

    .lg-image-inner {
        height: 100%;
    }
}

@media (max-width: 1024px) {
    .lg-wrapper {
        grid-template-columns: 1fr;
        max-height: unset;
    }

    .lg-input-col {
        padding-inline: 30px;
    }

    /*.lg-footer-col,*/
    .lg-image-col {
        display: none;
    }

    .lg-footer-col {
        padding-inline: 10px;
    }

    .footer_inner {
        padding: 7px 15px;

        > .row > div:first-of-type {
            display: none;
        }
    }

    .footer_desc {
        font-size: 14px;
        gap: 3px;
        justify-content: center;
    }

    .lg-input-logo {
        margin-bottom: 25px;
    }

    .lg-input-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .lg-input-message {
        font-size: 11px;
        margin-bottom: 25px;
    }

    #dealerForm > .row > * {
        width: 100%;
    }
}

.lg-footer-col .lg-input-message {
    display: none;
}

@media (max-width: 767px) {
    .lg-input-message {
        display: none;
    }

    .lg-wrapper {
        grid-template-rows: 1fr;
        max-height: unset;
        background: white;
        gap: 30px;
    }

    .lg-footer-col {
        position: relative;
    }

    .lg-input-col {
        padding-block: 30px 0;
    }

    .lg-footer-col .lg-input-message {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 3px;
        margin-bottom: 15px;
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    .lg-input-col {
        padding-inline: 15px;
        padding-block: 10px 60px;
    }

    .lg-input-divider {
        margin-block: 10px;
    }

    .lg-input-login,
    .lg-input-register {
        padding-block: 8.5px;
    }

    .lg-input-logo {
        margin-bottom: 15px;

        img {
            max-width: 200px;
        }
    }

    .lg-input label + input {
        min-height: 40px;
    }

    .lg-input-title {
        font-size: 16px;
        margin-bottom: 10px;
        text-wrap: pretty;
    }

    .lg-input-message {
        text-wrap: balance;
        font-size: 11px;
        margin-bottom: 25px;
    }

    .lg-input {
        margin-bottom: 20px;
    }

    .lg-input-footer {
        margin-bottom: 25px;
    }

    .footer_inner {
        padding-inline: 10px;
    }

    .lg-input-forgot-password,
    .lg-input-remember {
        font-size: 14px;
        gap: 7px;
    }

    .footer_desc {
        font-size: 12px;
        font-weight: 400;

        img {
            max-width: 65px;
        }
    }
}