*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    border: 0 solid transparent;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    font-family: Albert Sans, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: var(--black);
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
    line-height: inherit;
    color: inherit;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button,
[role="button"] {
    cursor: pointer;
    background-color: transparent;
    -webkit-tap-highlight-color: transparent;

    &:focus {
        outline: 0;
    }

}

a {
    cursor: pointer;
    color: inherit;
    text-decoration: inherit;
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

ol,
ul {
    list-style: none;
}

[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;

    &:focus {
        outline: 0;
    }

}

::-moz-placeholder {
    opacity: 1;
}

textarea {
    vertical-align: top;
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    &:focus {
        outline: 0;
    }

}

button:hover,
button:focus,
button:active {
    background-color: var(--secondary) !important;
}

a:hover,
a:focus,
a:active {
    color: var(--secondary) !important;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.media-block {
    width: 50vw;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/assets/3motion-loginbg.webp);
}

.content-block {
    padding: 80px 0;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
}

.tenant-selector-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
}

.tenant-selector-container .label-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tenant-selector-container .switcher {

}

.footer .link {
    font-weight: 700;
    color: var(--primary);
}

.main-form {
    margin: auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    gap: 40px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

form .options {
    margin-top: -16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 24px;
}

form div[class="mb-3"] {
    position: relative;
    margin: 0 !important;
}

form div[class="mb-3"] span:not([class]) {
    position: absolute;
    color: red;
    left: 8px;
    top: 8px;
}

.options .custom-control {
    margin: 0 !important;
}

.options .options-link {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 28px;
    text-transform: uppercase;
    color: var(--primary);
}

.options .remember-me {
    color: var(--black);
    font-size: 16px;
    line-height: 24px;
}

.input-group {
    flex-wrap: nowrap;
}


.header {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
}

.description {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.back-button {
    font-size: 30px;
}


:root {
    --primary: #201de1;
    --secondary: #0004d5;
    --white: #fff;
    --black: #000;
    --gray: #D7DEEB;
    --lightest-grey: #f8faff;
    --dark-gray: #5B6169;
    --darkest-gray: #10151B;
}


.label {
    margin-bottom: 8px;
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
}

    .label .info {
        font-weight: 400;
    }

.form-field-container {
    position: relative;
}

    .form-field-container .row-field {
        display: flex;
        gap: 25px;
    }

    .form-field-container .label + div:not([class]) {
        display: flex;
        gap: 25px;
        font-size: 16px;
    }

        .form-field-container .label + div:not([class]) .form-check-inline {
            margin: 0;
            display: inline-flex;
            padding: 15px 24px;
            background-color: #f8faff;
            width: 100%;
        }

            .form-field-container .label + div:not([class]) .form-check-inline .form-check-input {
                margin: 0;
                cursor: pointer;
            }



/* Account New 09-12-2024 */
.accountBg {
    background: #211fa1;
    min-height: 100vh;
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.account-block {
    background: #f7f8ff;
    max-width: 740px;
    border-radius: 28px;
    padding: 35px 35px;
    margin: auto;
    width: 100%;
    position: relative;
}
.account-block .logo {
    display: table;
    margin: auto;
}
.account-block .main-form {
    margin: auto;
    max-width: 450px;
}
.account-block .main-form.main-form-685 {
    max-width: 685px;
}
.account-block .main-form-head {
    max-width: 400px;
    margin: 0 auto -10px;
}
.account-block .main-form-head .header {
    margin-bottom: 15px !important
}
.account-block .header {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    color: var(--dark-gray);
}
.account-block .description {
    font-size: 17px;
    color: var(--dark-gray);
    line-height: 22px;    
}

.account-block .footer {
    margin-top: 35px;
    text-align: center;
    font-size: 17px;
    color: var(--dark-gray);
    font-weight: 400;
}
.account-block .footer .link {
    font-weight: 400;
    font-size: inherit;
}
.account-block .alert {
    padding: 8px 35px 7px 10px;
    border-radius: 4px;
}
.account-block .alert button.btn-close {
    height: auto;
    padding: 0;
    width: 14px;
    height: 14px;
    top: 12px;
    right: 10px;
    color: red;
    opacity: 1;
}
.account-block form {
    gap: 20px;
}
.account-block .form-control {
    border: 1px solid rgba(0,0,0,0.20) !important;
    padding: 5px 15px;
    border-radius: 10px;
    height: 45px;
    font-weight: 400;
    background: #fff;
}
.account-block .form-label {
    pointer-events: inherit;
    position: static;
    padding: 0;
    font-size: 20px;
    transform: none;
    display: block;
    margin-bottom: 8px;
    color: var(--black);
    font-weight: 400;
}
.account-block .form-label span {
    position: inherit !important;
}
.account-block .form-check .form-check-input {
    border-color: rgba(0,0,0,0.20) !important;
    /*border-radius: 0 !important;*/
}
.account-block .form-check .form-check-label {
    font-size: 17px;
    color: var(--dark-gray);
}
.account-block .btn-form-group {
    margin-top: 20px;
}
.account-block .btn-submit {
    border-radius: 6px;
    height: 40px;
    --bs-btn-padding-x: 42px;
    --bs-btn-padding-y: 5px;
}
.account-block .input-group {
    display: block;
}
.account-block form .options {
    margin-top: 5px;
}
.relative {
    position: relative;
}
.hide-show {
    position: absolute;
    right: 20px;
    top: 13px;
    cursor: pointer;
}
.forgot-link {
    font-size: 17px;
    text-align: right;
    display: inline-flex;
    justify-content: flex-end;
    color: var(--dark-gray);
    line-height: 1;
    margin-top: 10px;
}
.retun-link {
    font-size: 17px;
    margin: 20px auto 0 !important;
    display: table;
    color: var(--primary);
}
.text-right {
    text-align: right !important;
}
.resend-link {
    position: absolute;
    top: 44px;
    left: 271px;
    font-size: 13px;
    color: var(--secondary);
    border-radius: 10px;
    text-decoration: underline;
}

    .resend-link:hover {
        text-decoration: inherit;
        color: var(--black);
    }

.alert-dismissible .btn-close {
    background-color: transparent !important;
}
.account-block .back-button {
    color: var(--dark-gray);
}
