﻿html, body {
    height: 100%;
    margin: 0;
    background-color: #f6f5f3;
}

body {
    display: flex;
    justify-content: flex-start;
}

h1 {
    font-size: var(--font-size-xl);
    margin: 0px;
    margin-bottom: .5rem;
    font-weight: 600;
}

h2 {
    margin-bottom: 10px;
}

h3 {
    font-size: var(--font-size-xl);
    margin-bottom:0px;
}

h4 {
    font-weight: bold;
}

.forgot {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}

#next_section {
    opacity: 0;
    max-height: 0;
    visibility: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, visibility 0.5s;
}
#next_section.show {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.form-control {
    font-size: 1.5em;
    padding: 1em 0.5em;
    height: 1em;
}

.footer {
    align-items: center;
    display: flex;
    column-gap: .5em;
}

.wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
}

.header {
    margin-bottom:1em;
}

.header img {
    max-height: 180px;
    max-width: 300px;
}

.content {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 0;
    width: 100%;
    justify-content: center;
}

.flex {
    display: flex;
    flex-direction: row;
}

.flex-details {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.flex-details > div {
    margin-left: 5px;
    margin-right: 5px;
    flex: 1 1 0px
}

.login {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
    border: none;
    padding: 15px 25px;
    border-radius: 5px;
    margin-top: 25px;
    display: block;
    text-align: center;
    font-size: 1em;
    width: 100%;
}

.login:hover {
    color: var(--color-white);
}

.login:focus {
    color: var(--color-white);
}

.legal {
    font-size: 1em;
}

label {
    color: var(--color-white);
    font-size: 1em;
}

.sidebar {
    min-height: 100%;
    background-color: var(--color-blue-90);
    width: 100%;
    padding: 64px 64px 128px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-content: flex-start;
}

.sidebar.bg-image {
    background-image: url(https://cdn-us-1.azureedge.net/content-pages/images/backgrounds/bg_login.jpg?v=1);
    background-size: cover;
    color:var(--color-white);
}

    .sidebar h2 {
        font-size: var(--font-size-xxxl);
        font-weight: 700;
        line-height: 1.2em;
    }

.sidebar p {
    font-size:1.2em;
}

.sidebar .btn {
    margin-top: 10px;
    width: 300px;
    font-size: 1.2em;
    font-weight: bold;
}

.sidebar img.logo {
    width: 150px;
    padding: 0 0;
}

.sidebar img {
    max-width: 300px;
    max-height: 300px;
    padding: 10px 0 20px;
}

#couponApplied.invalid {
    color: #d02d1d;
}

.box {
    width: 500px;
    padding: 25px;
    color: var(--color-blue-0);
    background: var(--color-white);
    border-radius: 5px;
    box-shadow: 0 12px 40px var(--color-gray-70);
    margin:0 50px;
}

.box a.btn-social {
    color: var(--color-blue-0);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.btn-social svg {
    margin-right: 8px;
}

.about {
    background-color: #efefef;
    border-radius: 5px;
    padding: 15px 20px;
    font-size: 14px;
    margin: 25px 0;
}

.md-checkbox {
    display:flex;
    margin-top:15px;
}
.md-checkbox label {
    margin: 0px;
    font-weight: normal;
    padding:0;
}
.md-checkbox input[type="checkbox"] {
    height: 20px;
    width: 20px;
    margin: 0 5px 0 0;
}

.grecaptcha-badge {
    width: 70px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: -2px !important;
    bottom: 20px !important;
}

.grecaptcha-badge:hover {
    width: 256px !important;
}

.btn-social {
    display: block;
    border: solid 2px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px;
    margin-bottom: 15px;
    color: #333;
    background-color: #fff;
}

ul.passwordCheck {
    list-style: none;
    padding: 0;
}

ul.passwordCheck li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    border-radius: 8px;
    background: var(--color-red-40);
    position: relative;
    top: -3px;
}

ul.passwordCheck li.completed {
    opacity: .5;
}

ul.passwordCheck li.completed::before {
    background: green;
}

.field-required {
    color: var(--color-red-40);
    margin-left:3px;
}

.btn {
    font-size: var(--font-size-large);
    padding: 10px 15px;
    width: 100%;
}

.btn:hover {
    box-shadow: 0 1px 4px #0000004d;
}

.btn:focus {
    --saf-0: rgba(var(--sk_highlight,18,100,163),1);
    box-shadow: 0 0 0 1px var(--saf-0),0 0 0 5px #1d9bd14d;
}

.btn i {
    margin:0 10px;
}

a.btn-primary {
    text-decoration: none;
    border:none;
}
.btn-primary {
    margin-top: 15px;
    border: none;
    font-weight: 700;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary:active:hover {
    outline: none;
    border: none;
}

.btn-primary.disabled.focus, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary[disabled].focus, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:hover {
    outline: none;
    border: none;
    color: var(--color-white);
    background-color: var(--color-gray-70);
}

.form {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    padding: 25px;
    margin-bottom: 25px;
    min-width: 450px;
}

.box form {
    border: none;
    padding: initial;
    margin: initial;
    min-width: initial;
}
.plan-details {
    min-width: 350px;
}
.plan-pricing {
    background-color: var(--color-white);
    box-shadow: var(--shadow-90);
}
.plan-pricing ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: var(--color-white);
}
.plan-pricing h2 {
    text-align: center;
    font-size: var(--font-size-xxl);
    padding: 25px 0;
    margin: 0px;
}
.plan-pricing li {
    padding: .5em;
    text-align: center;
}
.form label {
    color: var(--color-blue-0);
    display: block;
}

ul.highlights {
    list-style: none;
    padding: 0;
    font-size:1.2em;
}
ul.highlights li {
    margin-bottom: 10px;
    display: flex;
    column-gap: 10px;
}
ul.highlights i {
    margin-top: 4px;
}


@media only screen and (max-width: 768px) {
    body {
        justify-content: center;
    }

    h1 {
        font-size: 1.5em;
    }

    .h1__subtext {
        font-size: var(--font-size-large);
    }

    .box {
        width: 100%;
        margin: 0 0;
        border-radius: 0;
        box-shadow: none;
    }

    .content {
        display: flex;
        justify-content: flex-start;
    }

    .wrapper {
        margin: 0 0;
        width:initial;
    }

    .footer {
        display: none;
    }

    a.btn-social svg {
        height: 18px;
        width: 18px;
    }
    input.form-control {
        font-size: initial;
        padding: 10px 10px;
    }
    form {
        max-width: 100%;
        border: none;
        width: 100%;
        padding: 0 0;
    }
}
@media only screen and (max-width: 1200px) {
    .sidebar {
        display: none;
    }
}

@media only screen and ( max-height: 800px ) {
    .sidebar {
        display: none;
    }
}
