@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300..900&display=swap');
*,*::before,*::after {box-sizing: border-box;}html,body,h1, h2, h3, h4, h5, h6,p,ul, ol, li,figure, figcaption,blockquote,dl, dd,fieldset, legend {margin: 0;padding: 0;}img,picture,video,canvas,svg {display: block;max-width: 100%;}ul,ol {list-style: none;}input,button,textarea,select {font: inherit;color: inherit;}button,[type="button"],[type="reset"],[type="submit"] {-webkit-appearance: button;background-color: transparent;border: none;padding: 0;cursor: pointer;}a {text-decoration: none;color: inherit;}article, aside, details, figcaption, figure,footer, header, hgroup, main, menu, nav, section {display: block;}table {border-collapse: collapse;border-spacing: 0;}textarea {resize: vertical;}input[type="text"],input[type="email"],input[type="password"],input[type="search"],input[type="tel"],input[type="url"],textarea {-webkit-appearance: none;-moz-appearance: none;appearance: none;}a,button,input[type="button"],input[type="submit"],input[type="reset"],input[type="checkbox"],input[type="radio"],select,label,[role="button"],[role="link"],[tabindex] {-webkit-tap-highlight-color: transparent;}
body {
    font-size: 12px;
    font-family: "Rubik", sans-serif;
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #F1F6F9;
}
#login-page {
    width: 100%;
    height: 100vh;
}
#login-page .container-fluid {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}
#login-page .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    height: 100%;
}
#login-page .row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
#login-page .row.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}
#login-page .col-xl-6 {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
}
.auth-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    padding: 24px;
}
.login-logo {
    position: absolute;
    left: 30px;
    top: 30px;
    z-index: 1;
    width: 100%;
    max-width: 165px;
    height: 100%;
    max-height: 35px;
    a {
        display: block;
    }
    svg {
        width: 100%;
        height: 100%;
    }
}
.login-monogram {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    width: 100px;
    height: 100%;
    svg {
        width: 100%;
        height: 100%;
    }
}
.form-container {
    width: 100%;
    max-width: 440px;
    .title {
        margin-bottom: 12px;
    }
    .subtitle {
        margin-bottom: 24px;
    }
    label {
        margin-top: 0.4rem;
        margin-left: 0.4rem;
        font-size: 12px;
    }
}
.title {
    color: #004B82;
    font-size: 24px;
    font-weight: 500;
}
.subtitle {
    color: #6E7A8C;
    font-size: 14px;
}
.form-group {
    position: relative;
    margin-bottom: 24px;
}
.form-control {
    width: 100%;
    height: 58px;
    color: #6E7A8C;
    font-size: 14px;
    font-weight: 300;
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid #DBE2EB;
    transition: .3s linear;
}
.form-control::placeholder {
    color: #6E7A8C;
}
.form-control:focus {
    border-color: #1886D6;
    outline: none;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.25);
}
.password-wrapper {
    position: relative;
}
.password-toggle {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #7f8c8d;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.password-toggle svg {
    width: 20px;
    height: 20px;
}
.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
.form-check-input {
    margin-right: 8px;
    margin-top: 0;
    width: auto;
    height: auto;
    accent-color: #1886D6;
}
.form-check-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.form-check-label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    color: #34495e;
    user-select: none;
    display: inline-flex;
    align-items: center;
    min-height: 22px;
}
.form-check-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #adb5bd;
    border-radius: 4px;
    background-color: #fff;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-check-input:focus + .form-check-label::before {
    outline: none;
    border-color: #1886D6;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.35);
}
.form-check-input:checked + .form-check-label::before {
    background-color: #1886D6;
    border-color: #1886D6;
}
.form-check-label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translateY(-50%) rotate(45deg) scale(0);
    transform-origin: center center;
    transition: transform 0.1s ease-in-out;
}
.form-check-input:checked + .form-check-label::after {
    transform: translateY(-60%) rotate(45deg) scale(1);
}
.forgot-password-link {
    font-size: 14px;
    color: #1886D6;
    text-decoration: none;
}
.forgot-password-link:hover {
    text-decoration: underline;
}
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-right: 45px;
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7L8 13L14 7' stroke='%23343A40' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
select.form-control:disabled {
    background-color: #F0F2F4;
}
select.form-control::-ms-expand {
    display: none;
}
select.form-control option[value=""][disabled] {
    color: #95a5a6;
}
select.form-control option {
    color: #34495e;
}
.button-group {
    display: flex;
    gap: 15px;
}
.btn {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    flex-grow: 1;
    text-align: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary {
    background-color: #1886D6;
    color: white;
}
.btn-primary:hover {
    background-color: #2980b9;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}
.btn-outline {
    background-color: transparent;
    color: #6E7A8C;
    border: 1px solid #DBE2EB;
    border-radius: 50px;
}
.btn-outline:hover {
    background-color: #f8f9fa;
    border-color: #1886D6;
    color: #1886D6;
}
.btn-secondary {
    background-color: #DBE2EB;
    color: #6E7A8C;
}
.btn-secondary:hover {
    background-color: #d3d9df;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.btn-success {
    height: 48px;
    border-radius: 0 5px 5px 0;
    background-color: #1886D6;
    color: white;
}
.btn-success:disabled {
    cursor: no-drop;
    opacity: .7;
}
.form-group-button {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.auth-right {
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.auth-quote {
    position: absolute;
    right: 30px;
    bottom: 60px;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    color: #fff;
    background-color: rgba(0,0,0,0.28);
    margin: 0;
    padding: 12px 20px;
    border-radius: 3px;
}
.auth-quote .quote-text {
    font-size: 20px;
    padding-right: 44px;
}
.auth-quote .quote-author {
    font-size: 14px;
    font-weight: 700;
    text-align: right;
}
.auth-quote > svg {
    position: absolute;
    right: 0;
    top: 0;
}
.auth-right video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.auth-boxes {
    width: 100%;
    max-width: 440px;
    > div {
        margin-bottom: 24px;
        a {
            display: block;
            color: currentColor;
            padding: 24px;
            background-color: #fff;
            border: 1px solid #DBE2EB;
            border-radius: 5px;
            transition: .3s linear;
            .title {
                position: relative;
                transition: .3s linear;
            }
            .title:before {
                content: '';
                position: absolute;
                left: -4px;
                top: 50%;
                transform: translateY(-50%);
                width: 0;
                height: 100%;
                transition: .3s linear;
                background-repeat: no-repeat;
                background-position: left center;
                background-image: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L1 13' stroke='%234A9DD8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            }
            .subtitle {
                opacity: .6;
            }
        }
        a:hover {
            border-color: #4A9DD8;
            .title {
                padding-left: 14px;
            }
            .title:before {
                left: 0;
                width: 14px;
            }
        }
    }
}
.form-group-inside {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #DBE2EB;
    .radio-area#basic {
        margin-bottom: 20px;
    }
    .radio-area {
        padding-left: 24px;
        .hidden-radio {
            display: none;
        }
        label {
            cursor: pointer;
        }
        p {
            position: relative;
            color: #004B82;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 6px;
        }
        p::before {
            content: '';
            position: absolute;
            left: -24px;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            border: 1px solid #767676;
            border-radius: 50%;
            background-color: #fff;
            transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
        }
        > input:checked + label p::before {
            border-color: #3273F6;
        }
        > input:checked + label p::after {
            content: '';
            position: absolute;
            left: -21px;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background-color: #3273F6;
            border-radius: 100%;
        }
        ul.content-list {
            li {
                color: #6E7A8C;
                font-size: 12px;
                font-weight: 300;
            }
        }
    }
}
.form-check-label
.form-check-input:focus + .form-check-label::before {
    outline: none;
    border-color: #1886D6;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.35);
}
.form-check-input:checked + .form-check-label::before {
    background-color: #1886D6;
    border-color: #1886D6;
}
.form-check-label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translateY(-50%) rotate(45deg) scale(0);
    transform-origin: center center;
    transition: transform 0.1s ease-in-out;
}
.form-check-input:checked + .form-check-label::after {
    transform: translateY(-60%) rotate(45deg) scale(1);
}
.partner-dealers-form {
    .form-group {
        margin-bottom: 12px;
    }
    .form-control {
        height: 48px;
    }
}
.phone-text {
    color: #6E7A8C;
    font-size: 14px;
    margin-bottom: 12px;
}
.d-none {
    display: none !important;
}
.d-xl-block {
    display: none !important;
}
@media only screen and (min-width: 1200px) {
    .d-xl-block {
        display: block !important;
    }
}
@media only screen and (max-width: 1199px) {
    #login-page .col-xl-6 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .auth-right,
    .login-monogram {
        display: none;
    }
    .auth-boxes {
        & > div {
            & a {
                .title:before {
                    display: none;
                }
            }
            a:hover {
                .title {
                    padding-left: 0;
                }
            }
        }
    }
}
@media only screen and (max-width: 991px) {
    .login-logo {
        left: 50%;
        transform: translateX(-50%);
    }
    .auth-left {
        padding-top: 90px;
    }
    .title,
    .subtitle {
        text-align: left;
    }
    .form-container {
        .title,
        .subtitle {
            text-align: center;
        }
    }
}
@media only screen and (max-width: 767px) {
    .title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .subtitle {
        font-size: 12px;
        margin-bottom: 16px;
    }
    .form-container {
        .title {
            font-size: 20px;
            margin-bottom: 8px;
        }
        .subtitle {
            font-size: 12px;
            margin-bottom: 16px;
        }
    }
    .auth-boxes {
        & > div {
            margin-bottom: 12px;
            & a {
                padding: 12px 20px;
                .subtitle {
                    margin-bottom: 0;
                }
            }
        }
    }
    .form-group-inside {
        padding: 12px;
    }
    .form-group,
    .form-options {
        margin-bottom: 12px;
    }
    .btn {
        height: 48px;
    }
    .form-control {
        height: 48px;
    }
    .btn-success {
        height: 48px;
    }
}
