﻿/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

body {
    line-height: 1;
}

a {
    text-decoration: none;
    color: var(--font-color);
}

/* readex-pro-regular - latin */
@font-face {
    font-family: 'Readex Pro';
    font-style: normal;
    font-weight: 400;
    src: local(""), url("fonts/readex-pro-v6-latin-regular.woff2") format("woff2"), url("fonts/readex-pro-v6-latin-regular.woff") format("woff");
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* readex-pro-700 - latin */
@font-face {
    font-family: 'Readex Pro';
    font-style: normal;
    font-weight: 700;
    src: local(""), url("fonts/readex-pro-v6-latin-700.woff2") format("woff2"), url("fonts/readex-pro-v6-latin-700.woff") format("woff");
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
    font-family: "fontAwesome";
    src: url("fonts/fa-solid-900.woff2") format('woff2'), url("fonts/fa-solid-900.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}





.form__row {
    margin: -1.5rem -1.5rem 1.2rem -1.5rem;
    display: flex;
}

@media (max-width: 550px) {
    .form__row {
        flex-direction: column;
    }
}

.form__field, .form__button {
    margin: 1.5rem;
    width: calc(50% - 3rem);
    display: flex;
    align-items: flex-start;
}

.form__field {
    flex-direction: column;
}



    .form__field label {
        margin-bottom: 1.3rem;
        width: 100%;
        display: flex;
        align-items: center;
        font-weight: 700;
    }

        .form__field label small {
            margin-left: 2rem;
            font-size: 1.6rem;
            font-weight: 400;
        }

            .form__field label small:first-child {
                margin-left: auto;
            }

    .form__field input:not([type="checkbox"]),
    .form__field select {
        width: 100%;
    }

.form__field--full {
    width: calc(100% - 3rem);
}




input,
textarea,
select {
    font-family: "Readex Pro", Helvetica, cursive;
    font-size: 1.8rem;
    color: var(--font-color);
    background-color: var(--background);
    border: 0.1rem solid #9F9FB1;
    border-radius: var(--border-radius);
    transition: all ease-in-out 0.2s;
}

    input:focus,
    textarea:focus,
    select:focus {
        outline: none;
        border-color: var(--accent-color);
    }

input,
select {
    height: 4.5rem;
    padding: 0 2rem;
}


* {
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    padding: 0 0 0 30rem;
    font-family: "Readex Pro", Helvetica, cursive;
    font-size: 1.8rem;
    color: var(--font-color);
    background: var(--background-secondary);
}

@media screen and (max-width: 1000px) {
    body {
        padding: 0 0 0 25rem;
    }
}

@media screen and (max-width: 800px) {
    body {
        padding: 8rem 0 0 0;
    }
}


h1 {
    font-family: "Readex Pro", Helvetica, cursive;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -0.175rem;
    line-height: 1.2;
}

@media screen and (max-width: 700px) {
    h1 {
        font-size: 4.5rem;
    }
}

@media screen and (max-width: 500px) {
    h1 {
        font-size: 3.5rem;
    }
}

h2 {
    font-family: "Readex Pro", Helvetica, cursive;
    font-size: 4.5rem;
    line-height: 1.2;
}

@media screen and (max-width: 700px) {
    h2 {
        font-size: 4rem;
    }
}

@media screen and (max-width: 500px) {
    h2 {
        font-size: 3rem;
    }
}

h3 {
    font-family: "Readex Pro", Helvetica, cursive;
    font-size: 3.7rem;
    line-height: 1.2;
}

@media screen and (max-width: 700px) {
    h3 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 500px) {
    h3 {
        font-size: 2.5rem;
    }
}


.anchor-link {
    cursor: pointer;
}


h1:focus {
    outline: none;
}

.validation-summary-errors li,
.field-validation-error {
    color: #947600;
    background: #fffbeb;
    margin-top: 0.5rem;
}

.passwordResetLink {
    color: #6d7ce5;
    text-decoration: underline;
}

.hide {
    display: none;
}


h4 {
    font-size: 3rem;
}

@media screen and (max-width: 700px) {
    h4 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 500px) {
    h4 {
        font-size: 2.1rem;
    }
}

.passwordForgotten {
    padding: 1rem;
    font-size: 1.6rem;
    text-decoration: underline;
    color: #022873;
    transition: all ease-in-out 0.2s;
    font-weight: 100;
}

.rightalign {
    float: right;
}


.form__field__initial {
    display: initial;
}

.center_align {
    text-align: center;
}

.form__heading a:not(:last-child),
.overview-section__heading a:not(:last-child) {
    margin-right: 3rem;
}



.btn,
button {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0 2rem;
    height: 5rem;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.041rem;
    line-height: 4.8rem;
    color: var(--accent-font-color);
    background: var(--accent-color);
    box-shadow: var(--box-shadow);
    border: none;
    cursor: pointer;
    border-radius: var(--border-radius);
    border-top: 0.2rem solid transparent;
    border-bottom: 0.3rem solid transparent;
    transition: all ease-in-out 0.3s;
    margin-right: 1rem;
}

.btn--icon .icon,
button--icon .icon {
    margin-right: 1rem;
}

.btn--icon-large .icon,
button--icon-large .icon {
    font-size: 1.5rem;
}

.btn--secondary {
    color: var(--button-secondary-color);
    border: 0.2rem solid var(--button-secondary-background);
    background: transparent;
}


.btn:hover,
button:hover {
    transform: scale(1.03);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.07);
}

.page {
    padding-left: 25%;
    padding-right: 25%;
}

.page-heading {
    margin-top: 1rem;
}

body {
    padding: 0;
    font-size: 1.8rem;
    color: var(--font-color);
    background: var(--background-secondary);
}

/*.form__field {
    width: calc(100% - 7rem);
}*/
.passwordForgottenInfo {
    font-size: 1.5rem;
    color: gray;
}

.passwordForgottenButtonDiv {
    padding-bottom: 2rem;
}

.passwordForgottenLinkDiv {
    width: auto;
}

.passwordForgottenSupportLink {
    color: gray;
    margin: 1.5rem;
    display: inline-block;
    font-weight: 700;
    font-size: 1.5rem;
}

.passwordForgottenCancel {
    font-size: 1.6rem;
    text-decoration: underline;
    color: #022873;
    transition: all ease-in-out 0.2s;
    padding: 1rem;
}


/*New css aside like deskoffice*/
.header {
    padding: 2rem;
    display: flex;
    align-items: center;
    background: #022873;
}

.header__title {
    position: relative;
    margin-right: 3rem;
    padding-right: 3rem;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.01rem;
    line-height: 2.7rem;
    color: #FFF;
}

.login {
    padding: 5rem;
    display: flex;
    justify-content: center;
}

.login__inner {
    padding: 3rem;
    width: 100%;
    max-width: 60rem;
    background: #FFF;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.07);
}

.login h1 {
    margin-bottom: 3rem;
}

h1 {
    font-family: "Readex Pro", Helvetica, cursive;
    font-size: 5rem;
    letter-spacing: -0.175rem;
    line-height: 1.2;
}

h1, h2, h3, h4, h4 {
    font-weight: 700;
}

.form__field--buttons {
    flex-direction: row;
    align-items: center;
}

input, select {
    height: 4.5rem;
    padding: 0 1.5rem;
}

input, textarea, select {
    font-family: "Readex Pro", Helvetica, cursive;
    font-size: 1.8rem;
    color: #022873;
    background-color: #fff;
    border: 0.1rem solid #DBDFEC;
    border-radius: var(--border-radius);
    transition: all ease-in-out 0.2s;
}

.login-btn {
    margin-top: 0 !important;
    background-color: #BF0404;
    align-items: center;
    display: flex;
    /*padding: 1.5rem 2rem;*/
    border-top: none;
    height: auto !important
}

.no-padding {
    padding: unset !important;
}
