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;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
}

a {
    text-decoration: none;
    color: #000;
}

sub,
sup {
    /* Specified in % so that the sup/sup is the
       right size relative to the surrounding text */
    font-size: 75%;
    /* Zero out the line-height so that it doesn't
       interfere with the positioning that follows */
    line-height: 0;
    /* Where the magic happens: makes all browsers position
       the sup/sup properly, relative to the surrounding text */
    position: relative;
    /* Note that if you're using Eric Meyer's reset.css, this
       is already set and you can remove this rule */
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    background-color: transparent;
    line-height: 1;
    width: 100%;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

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

.fll {
    float: left;
}

.flr {
    float: right;
}

html {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    background-color: #fff;
}

#mainPage {
    display: flex;
    flex-grow: 1;
    width: 100%;
    height: 100vh;
}

.loginContainer {
    /*background-color: red;*/
    max-width: 50%;
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    justify-content: space-between;
    gap: 32px;
}

.illustrationContainer {
    background-color: var(--csecondary);
    flex: 1 1 0%;
    position: fixed;
    top: 24px;
    right: 24px;
    bottom: 24px;
    width: calc(50% - 24px);
    border-radius: 19px;
    overflow: hidden;
    background-image: url('../img/emma_coach.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.loginContainer .headerContainer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 32px;
    align-items: center;
}

.loginContainer .headerContainer .logoContainer img {
    width: 155px;
}

.loginContainer .headerContainer .mobileLogo img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.loginContainer .headerContainer .mobileLogo {
    display: none;
}

.loginContainer .headerContainer .desktopLogo {
    display: block;
}

.loginContainer .textContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.loginContainer .titleLabel {
    font-size: 30px;
    font-weight: 500;
    color: #101828;
    margin-bottom: 12px;
    text-align: center;
}

.loginContainer .subtitleLabel {
    font-size: 16px;
    color: var(--csecondary);
    margin-bottom: 30px;
}

.loginContainer .formContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 360px;
}

.loginContainer .formContainer .uifieldContainer {
    width: 100%;
    margin-bottom: 20px;
}

.loginContainer .formContainer .uibtn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    height: 44px;
}

.loginContainer .formContainer #simpleLogin {
    background-color: #36574B;
    margin-bottom: 15px;
}

.loginContainer .formContainer #simpleLogin:hover {
    background-color: #2b4539;
}

.loginContainer.loginMarketplace .formContainer #simpleLogin {
    background-color: #d4494f;
}

.loginContainer.loginMarketplace .formContainer #simpleLogin:hover {
    background-color: #ba3c41;
}

.loginContainer .formContainer #facebookConnectBtn {
    background-color: #5D7CAE;
}

.loginContainer .formContainer #facebookConnectBtn:hover {
    background-color: #516d9a;
}

.loginContainer .formContainer .loginButtons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

.loginContainer .formContainer .forgotPasswordContainer {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    color: #000;
    font-size: 14px;
    margin-bottom: 10px;
}

.loginContainer .createAccountContainer {
    margin-top: 30px;
    color: var(--csecondary);
    font-size: 14px;
    display: flex;
    gap: 5px;
}

.loginContainer .createAccountContainer a {
    color: #000;
    font-weight: 500;
}

.loginContainer .privacyContainer {
    font-size: 14px;
    color: var(--csecondary);
}

.modalV2 .modal-content {
    border: none !important;
    border-radius: 0.8rem !important;
}

.modalV2 .modal-header {
    border-bottom: none;
    padding: 1.5rem 2rem 1rem 2rem;
}

.modalV2 .modal-header .close {
    background-color: #fff;
    border-radius: 50%;
    aspect-ratio: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    margin-top: -0.5rem;
    justify-content: center;
}

.modalV2 .modal-body {
    padding: 1rem 2rem;
}

.modalV2 .modal-footer {
    border-top: none;
    padding: 0.5rem 1.5rem 1rem 1.5rem;
}


@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: .11em;
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }
    50% {
        opacity: 1;
    }
}


@media only screen and (max-width: 800px) {

    #mainPage {
        height: inherit;
    }

    .loginContainer {
        max-width: 100%;
        padding: 20px;
    }

    .illustrationContainer {
        display: none;
    }

    .loginContainer .formContainer {
        width: 100%;
    }

    .loginContainer .headerContainer .mobileLogo {
        display: block;
    }

    .loginContainer .headerContainer {
        padding: 0;
        align-items: inherit;
    }

    .loginContainer .textContainer {
        align-items: flex-start;
    }

    .loginContainer .headerContainer .desktopLogo {
        display: none;
    }
}