
html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    overflow: hidden;
}

body {
    font-size: 16px;
}


/* 0.0 - Colors */
:root {
    --primary-color: #ff6171;
    --red-color: #db5461;
    --yellow-color: #ffa500;
    --green-color: #66db8e;
    --black-color: #13293d;
    --black-gray: #737a81;
    --text-color: var(--black-color);
}

/* 1.1 - Header */
header {
    padding: 15px 0;
}


    header .logo {
        height: 23px;
    }

/* 1.2 - Footer */

footer {
    width: 100%;
    padding: 26px 0;
    box-shadow: inset 0 1px 0 0 #d8dde0;
    position: absolute;
    bottom: 0;
}

    footer p {
        opacity: 0.8;
        font-size: 14px;
        text-align: center;
        color: #737a81
    }

/* 1.3 - Form */

input[type="checkbox"] {
    -webkit-appearance: none;
    background-color: var(--white-color);
    border: 1px solid var(--text-color);
    padding: 7px;
    height: 14px;
    border-radius: 4px;
    display: inline-block;
    position: relative;
}
input[type="checkbox"]:active, input[type="checkbox"]:checked:active {
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

input[type="checkbox"]:checked {
    color: transparent;
}
input[type="checkbox"]:checked:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 9px;
    top: 7px;
    transform: rotate(135deg);
    left: 4px;
    background-color: var(--text-color);
}
input[type="checkbox"]:checked:before {
    content: '';
    position: absolute;
    height: 2px;
    width: 6px;
    top: 8px;
    left: 1px;
    transform: rotate(45deg);
    background-color: var(--text-color);
}
input[type="checkbox"]:focus {
    outline: none;
}


*#msform input[type="text"], #msform input[type="email"], #msform input[type="password"], #msform textarea, #msform select {
    background-color: var(--white-color);
    box-shadow: 0 1px 2px 0 rgba(30, 60, 73, 0.1);
    border: solid 1px rgba(115, 122, 129, 0.5);
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 18px;
    line-height: 1.0;
    text-align: left;
    color: #13293d
}

*#msform input, #msform textarea {
    color: #13293d
}

/* 1.4 - Buttons */

/* 3.0 - Access Shared */

.lato-24-bold {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: bold;
}

.lato-16-bold {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: bold;
}

.lato-14-black {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 900;
}

.sans-17 {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    color: #737a81;
}

.sans-16 {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #737a81;
}

.sans-18 {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
}

.access-field {
    height: 48px;
}

.access-title {
    width: 100%;
    text-align: center;
}

.access-header {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 120px;
    height: 120px;
    margin-bottom: 32px;
    background-color: transparent;
}

.access-header-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.access-header-spacer {
    flex: 1 1 auto;
}

.access-footer {
    position: static;
    display: flex;
    align-content: center;
    flex: 0 0 72px;
    height: 72px;
    padding: 0 24px;
    margin-top: 32px;
}

.access-footer .col {
    padding: 0;
}

.access-footer p {
    margin: 0;
}

.header-icon {
    margin-left: 24px;
}

.access-body {
    display: flex;
    width: 100%;
    height: 100%;
}

.access-image, .access-background {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0;
    margin: 0;
}

.access-image {
    flex: 1 1 30%;
    height: 100vh;
}

.access-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.access-background {
    justify-content: space-between;
    flex: 1 1 70%;
    overflow: auto;
    background-color: var(--white-color);
}

.access-footer-logo {
    display: none;
}

.home-redirect, .home-redirect img {
    height: 60px;
}

.access-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex: 1 1 auto;
    height: auto;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.access-container .access-alt {
    display: block;
}

.access-card {
    flex: 1 0 100%;
    background-color: #ffffff;
}

.access-card + .col {
    margin-top: 24px;
}

.access-card .form-group {
    width: 100%;
}

.access-container > form, .access-container > .access-card {
    display: flex;
    align-items: center;
    flex: 0 0 50%;
    max-width: 500px;
    flex-wrap: wrap;
    align-content: center;
}

.access-container-register {
    overflow-y: visible;
    display: flex !important;
}


.access-container img.logo {
    width: 70%;
}
.access-container form {
    overflow: auto;
}
.access-container form > div.row {
    margin:0 !important;
}

.access-alt {
    color: var(--primary-color);
    text-decoration: underline;
}

.toggle-button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
    padding: 16px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

    .toggle-button:hover {
        cursor: pointer;
    }

.password-field {
    position: relative;
    width: 100%;
}

.password-input {
    width: 100%;
    padding-right: 48px;
}

/* Login */

.main-cta-container {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.login-main {
    width: 150px;
}

.main-cta-spacer {
    flex: 1 1 auto;
}


.text-danger {
    display: block;
    margin-top: 10px;
    text-align: center;
}

.validation-summary-errors.text-danger ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.btn.big {
    padding:15px !important;
}

a.btn.default, button.default, .btn.btn-default {
    padding: 3px 15px;
    border-radius: 3px;
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--gray-color);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.29;
    letter-spacing: 0.2px;
    text-align: center;
}

.btn.btn-custom, a.btn.full, button.full, .btn.btn-info, .btn.btn-primary {
    padding: 3px 15px;
    border-radius: 3px;
    border: none;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.29;
    letter-spacing: 0.2px;
    text-align: center;
}
.btn.btn-custom.inverted, a.btn.full.inverted, button.full.inverted, .btn.btn-info.inverted, .btn.btn-primary.inverted {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.btn.btn-custom:hover, a.btn.full:hover, button.full:hover, .btn.btn-info:hover, .btn.btn-primary:hover {
    background-color: var(--secondary-color);
}
.btn.btn-custom.inverted:hover, a.btn.full.inverted:hover, button.full.inverted:hover, .btn.btn-info.inverted:hover, .btn.btn-primary.inverted:hover {
    background-color: var(--primary-color);
    color:var(--white-color);
}

a.btn.clear, button.clear, .GridFilterButtonCancel a, .GridFilterButtonApply a, #documentSelectReset {
    padding: 3px 15px;
    border: none;
    background-color: transparent;
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.29;
    letter-spacing: 0.2px;
    text-align: center;
}

a.btn i.material-icons, button i.material-icons {
    float: right;
    margin-top: 1px;
    font-size: 17px;
    margin-left: 4px;
}


@media (max-width: 991px) {
    .access-background {
        justify-content: space-between;
        overflow: auto;
    }

    .access-header {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 120px;
        height: 120px;
        position: static;
        top: auto;
        left: auto;
        right: auto;
        padding: 0;
    }

    .access-container {
        flex: 1 1 auto;
        height: auto;
        overflow: visible;
    }

    .access-header-wrapper {
        justify-content: center;
        margin-top: 16px;
    }

    .access-background, .access-container > form, .access-container > .access-card {
        flex: 1 0 100%;
        width: 100%;
        height: 100%;
    }

    .access-container > form, .access-container > .access-card {
        padding: 24px;
    }

    .access-image {
        display: none;
    }

    .access-card .form-group .btn {
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    .access-card .main-cta-container {
        flex-wrap: wrap;
    }

    .access-card .btn {
        flex: 1 0 100%;
        margin-bottom: 24px;
    }

    .access-card .main-cta-spacer {
        display: none;
    }

    .access-footer {
        flex: 0 0 92px;
    }
}