
html, body {
    font-family: "Poppins", sans-serif;
    height: 100%;
    margin: 0;
    color:#0C0C0C;
}

a {
    color: #0C0C0C;
}

a:hover, a:focus {
    color: #0C0C0C;
}

.form-control {
    line-height: 2;
    height: auto;
    padding-inline: 12px;
}

.form-control, .control-label, label {
    font-size: 16px;
    font-weight: normal;
    color: #0C0C0C;
}

.form-control:hover {
    border-color: #381574;
}

.form-control:focus {
    box-shadow: rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgba(56, 21, 116, 0.4) 0px 0px 8px;
    border-color: #381574;
}

.login-pf body {
    background: url("../img/keycloak-bg.png") no-repeat center center fixed;
    background-size: cover;
    height: 100%;
}

.alert-error {
    background-color: #ffffff;
    border-color: #cc0000;
    color: #333333;
}

#kc-locale ul {
    display: none;
    position: absolute;
    background-color: #fff;
    list-style: none;
    right: 0;
    top: 20px;
    min-width: 100px;
    padding: 2px 0;
    border: solid 1px #bbb;
}

#kc-locale:hover ul {
    display: block;
    margin: 0;
}

#kc-locale ul li a {
    display: block;
    padding: 5px 14px;
    color: #000 !important;
    text-decoration: none;
    line-height: 20px;
}

#kc-locale ul li a:hover {
    color: #4d5258;
    background-color: #d4edfa;
}

#kc-locale-dropdown a {
    color: #4d5258;
    background: 0 0;
    padding: 0 15px 0 0;
    font-weight: 300;
}

#kc-locale-dropdown a:hover {
    text-decoration: none;
}

a#kc-current-locale-link {
    display: block;
    padding: 0 5px;
}

/* a#kc-current-locale-link:hover {
    background-color: rgba(0,0,0,0.2);
} */

a#kc-current-locale-link::after {
    content: "\2c5";
    margin-left: 4px;
}

.login-pf .container {
    padding-top: 40px;
}

.login-pf a:hover {
    color: #0099d3;
}

#kc-logo {
    width: 100%;
}

#kc-logo-wrapper {
    background-image: url(../img/keycloak-logo-2.png);
    background-repeat: no-repeat;
    height: 63px;
    width: 300px;
    margin: 62px auto 0;
}

div.kc-logo-text {
    background-image: url(../img/keycloak-logo-text.png);
    background-repeat: no-repeat;
    height: 63px;
    width: 300px;
    margin: 0 auto;
}

div.kc-logo-text span {
    display: none;
}

#kc-header {
    color: #ededed;
    overflow: visible;
    white-space: nowrap;
}

#kc-header-wrapper {
    font-size: 29px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2em;
    padding: 62px 10px 20px;
    white-space: normal;
}

#kc-content {
    width: 100%;
}

#kc-attempted-username {
    font-size: 20px;
    font-family: inherit;
    font-weight: normal;
    padding-right: 10px;
}

#kc-username {
    text-align: center;
}

#kc-webauthn-settings-form {
    padding-top: 8px;
}

#kc-info-wrapper {
    font-size: 13px;
}

#kc-form-options span {
    display: block;
}

#kc-form-options .checkbox {
    margin-top: 45px;
    color: #72767b;
}

#kc-form-options a {
    font-size: 16px;
}

#kc-terms-text {
    margin-bottom: 20px;
}

#kc-registration {
    margin-bottom: 15px;
}

/* TOTP */

.subtitle {
    text-align: right;
    margin-top: 30px;
    color: #909090;
}

.required {
    color: #CB2915;
}

ol#kc-totp-settings {
    margin: 0;
    padding-left: 20px;
}

ul#kc-totp-supported-apps {
    margin-bottom: 10px;
}

#kc-totp-secret-qr-code {
    max-width: 150px;
    max-height: 150px;
}

#kc-totp-secret-key {
    background-color: #fff;
    color: #333333;
    font-size: 16px;
    padding: 10px 0;
}

/* OAuth */

#kc-oauth h3 {
    margin-top: 0;
}

#kc-oauth ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#kc-oauth ul li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    padding: 10px 0;
}

#kc-oauth ul li:first-of-type {
    border-top: 0;
}

#kc-oauth .kc-role {
    display: inline-block;
    width: 50%;
}

/* Code */
#kc-code textarea {
    width: 100%;
    height: 8em;
}

/* Social */

#kc-social-providers ul {
    padding: 0;
}

#kc-social-providers li {
    display: block;
}

#kc-social-providers li:first-of-type {
    margin-top: 0;
}

.kc-login-tooltip {
    position: relative;
    display: inline-block;
}

.kc-login-tooltip .kc-tooltip-text {
    top: -3px;
    left: 160%;
    background-color: black;
    visibility: hidden;
    color: #fff;

    min-width: 130px;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
    padding: 5px;

    position: absolute;
    opacity: 0;
    transition: opacity 0.5s;
}

/* Show tooltip */
.kc-login-tooltip:hover .kc-tooltip-text {
    visibility: visible;
    opacity: 0.7;
}

/* Arrow for tooltip */
.kc-login-tooltip .kc-tooltip-text::after {
    content: " ";
    position: absolute;
    top: 15px;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}

.zocial,
a.zocial {
    font-weight: normal;
    font-size: 16px;
    text-shadow: none;
    border: 0;
    background: transparent;
    color: #0c0c0c;
    border-radius: 0;
    white-space: normal;
    box-shadow: none;
    text-decoration: underline;
}

.zocial:before {
    border-right: 0;
    margin-right: 0;
}

.zocial span:before {
    padding: 7px 10px;
    font-size: 14px;
}

.zocial:hover {
    background: #ededed !important;
}

.zocial.saml {
    text-decoration: underline;
    color: #0C0C0C;
}

.zocial.saml:hover {
    text-decoration: none;
}

.zocial.saml:before {
    content: none;
}

.zocial.facebook,
.zocial.github,
.zocial.google,
.zocial.microsoft,
.zocial.stackoverflow,
.zocial.linkedin,
.zocial.twitter {
    background-image: none;
    border: 0;

    box-shadow: none;
    text-shadow: none;
}

/* Copy of zocial windows classes to be used for microsoft's social provider button */
.zocial.microsoft:before {
    content: "\f15d";
}

.zocial.stackoverflow:before {
    color: inherit;
}


@media (min-width: 768px) {
    #kc-container-wrapper {
        position: absolute;
        width: 100%;
    }

    .login-pf .container {
        padding-right: 80px;
    }

    #kc-locale {
        position: relative;
        text-align: right;
        z-index: 9999;
    }
}

@media (max-width: 767px) {

    .login-pf body {
        background: white;
    }

    #kc-header {
        padding-left: 15px;
        padding-right: 15px;
        float: none;
        text-align: left;
    }

    #kc-header-wrapper {
        font-size: 16px;
        font-weight: bold;
        padding: 20px 60px 0 0;
        color: #72767b;
        letter-spacing: 0;
    }

    div.kc-logo-text {
        margin: 0;
        width: 150px;
        height: 32px;
        background-size: 100%;
    }

    #kc-form {
        float: none;
    }

    #kc-info-wrapper {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 15px;
        padding-top: 15px;
        padding-left: 0px;
        padding-right: 15px;
    }

    #kc-social-providers li {
        display: block;
        margin-right: 5px;
    }

    .login-pf .container {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    #kc-locale {
        position: absolute;
        width: 200px;
        top: 20px;
        right: 20px;
        text-align: right;
        z-index: 9999;
    }

    #kc-logo-wrapper {
        background-size: 100px 21px;
        height: 21px;
        width: 100px;
        margin: 20px 0 0 20px;
    }

}

@media (min-height: 646px) {
    #kc-container-wrapper {
        bottom: 12%;
    }
}

@media (max-height: 645px) {
    #kc-container-wrapper {
        padding-top: 50px;
        top: 20%;
    }
}

.card-pf form.form-actions .btn {
    float: right;
    margin-left: 10px;
}

#kc-form-buttons {
    margin-top: 40px;
}

.login-pf-page .login-pf-brand {
    margin-top: 20px;
    max-width: 360px;
    width: 40%;
}

.card-pf {
    background: #fff;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 500px;
    border-top: 0;
    box-shadow: 0 0 0;
}

/*tablet*/
@media (max-width: 840px) {
    .login-pf-page .card-pf {
        max-width: none;
        margin-left: 20px;
        margin-right: 20px;
        padding: 20px 20px 30px 20px;
    }
}

@media (max-width: 767px) {
    .login-pf-page .card-pf {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
    }

    .card-pf.login-pf-accounts {
        max-width: none;
    }
}

.login-pf-page .login-pf-signup {
    font-size: 15px;
    color: #0C0C0C;
    line-height: 1.4;
}

#kc-content-wrapper .row {
    margin-left: 0;
    margin-right: 0;
}

#kc-content-wrapper > p:first-child {
    margin-bottom: 20px;
    font-size: 16px;
    max-width: 345px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .login-pf-page .login-pf-social-section:first-of-type {
        padding-right: 39px;
        border-right: 1px solid #d1d1d1;
        margin-right: -1px;
    }

    .login-pf-page .login-pf-social-section:last-of-type {
        padding-left: 40px;
    }

    .login-pf-page .login-pf-social-section .login-pf-social-link:last-of-type {
        margin-bottom: 0;
    }
}

.login-pf-page .login-pf-social-link a {
    padding: 2px 0;
}

.login-pf-page.login-pf-page-accounts {
    margin-left: auto;
    margin-right: auto;
}

.login-pf-page .btn-primary {
    margin-top: 0;
}

.login-pf-page .list-view-pf .list-group-item {
    border-bottom: 1px solid #ededed;
}

.login-pf-page .list-view-pf-description {
    width: 100%;
}

.login-pf-page .card-pf {
    margin-bottom: 10px;
}

#kc-form-login div.form-group:last-of-type,
#kc-register-form div.form-group:last-of-type,
#kc-update-profile-form div.form-group:last-of-type {
    margin-bottom: 0px;
}

#kc-back {
    margin-top: 5px;
}

form#kc-select-back-form div.login-pf-social-section {
    padding-left: 0px;
    border-left: 0px;
}

/*New Styles with IW CTA*/

.main-container {
    display: flex;
    height: 100%;

    @media (max-width: 991.98px) {
        flex-flow: column;
        height: auto;
    }
}

.login-pf-page {
    margin-top: 125px;
    margin-bottom: auto;
}

@media (min-width: 992px) {
    .login-pf-page {
        margin-top: 115px;
    }
}

.login-pf-page .login-pf-header h1 {
    color: #0C0C0C;
    font-size: 24px;
}

.login-pf-page .login-pf-header p {
    font-size: 16px;
    max-width: 350px;
    line-height: 1.2;
}

#kc-form-wrapper {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 5.5rem;
}

#kc-form-wrapper .checkbox input[type=checkbox] {
    top: 2px;
    accent-color:#A200FF;
}

#kc-page-title {
    text-align: left;
    font-weight: bold;
}

.login-pf-page .form-control {
    border-radius: 4px;
}

.iw-background {
    display: block;
    flex-grow: 1;
    flex-basis: 0;
    background-image: url("../img/iw-login-lady.png");
    background-size: 130%;
    background-position: right 95% top 68%;
    background-repeat: no-repeat;


    @media (min-width: 576px) {
        background-size: cover;
        background-position: right center;
    }

    @media (min-width: 992px) and (max-width: 1199.98px) {
        background-position: right 35% center;
    }

    @media (min-width: 1200px) {
        background-position: right 45% center;
    }


    @media (min-width: 1440px) {
        background-position: right 10% center;
    }
}

.main-login-container, .main-iw-container {
    max-width: 600px;
}


.main-iw-container {
    margin-inline: auto;
    margin-bottom: 75px;
    padding-left: 20px;

    @media (min-width: 576px) {
        margin-left:50px ;
        margin-bottom: 150px;
        padding-left: 0;
    }
}

.main-login-container {
    margin-left: auto;
    margin-right: auto;
}

.card-pf.login-pf-accounts {
    max-width: 600px;
}

.login-pf-page .card-pf {
    background-color: transparent;
    margin-right: auto;
}

@media (min-width: 992px) {
    .login-pf-page .card-pf {
        max-width: 450px;
    }
}

@media (max-width: 991.98px) {
    .login-pf-page .card-pf {
        max-width: 450px;
        margin-left: auto;
    }
}

.btn {
    font-weight: 500;
    border-radius: 4px;
    border-color: transparent;
    font-size: 2rem;
    background-image:none;
    background-color: #A200FF;
    padding-top: 12px;
    padding-bottom: 12px;

}

.btn:hover, .btn:active, .btn:focus, .btn-primary:active:hover, .btn-primary.active.focus,
.btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus,
.btn-primary:active:focus, .btn-primary:active:hover {
    background-color: #381574;
    border-color: transparent;
    outline: none;
}

#kc-social-providers > p:first-child {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #0C0C0C;
    line-height: 0.1em;
    margin: 10px 0 20px;
    color: #0C0C0C;
}

#kc-social-providers > p:first-child span {
    background: #fff;
    padding: 0 20px;
    color: #0C0C0C;
    font-size: 16px;
}

.iw-main-graphic, .iw-advantage-text-container {
    display: inline-block;
}

.iw-main-graphic-container {
    margin-top: 40px;

    @media (min-width: 576px) {
        margin-top: 50px;
    }

    @media (min-width: 992px) {
        margin-top:123px;
    }
}

.iw-main-graphic {
    content: url(../img/momentum-edge-logo.svg);
    width:365px;
    height: auto;
    display: block;
    margin-bottom: 36px;

    @media (max-width: 576px) {
        width:275px;
    }

    @media (min-width: 992px) and (max-width: 1199.98px) {
        width:320px;
    }

    @media (min-width: 1440px) {
        width:500px;
    }
}

.iw-advantage-text-container {
    font-size: 26px;
    line-height: 1.2;
    max-width: 250px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);

    @media (min-width: 576px) {
        max-width: 350px;
    }
}

.iw-advantage-text-container p:last-child {
    font-size: 16px;
    font-weight: normal;
    max-width: 415px;
}

@media (max-width: 575.98px) {
    .iw-advantage-text-container {
        font-size: 18px;
    }
}

.main-iw-container .btn {
    background-color: rgba(12, 12, 12, 0.25);
    border: 3px solid #fead0f;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 15px 35px;
    text-transform: uppercase;
    transition: all .4s ease-in-out;

    @media (max-width: 575.98px) {
        font-size: 14px;
        padding: 10px 25px;
    }
}

.main-iw-container .btn:hover, .main-iw-container .btn:active, .main-iw-container .btn:focus {
    transform: scale(1.05);
}

.login-pf-social.list-unstyled.login-pf-social-all {
    display: inline-block;
}

.login-pf-social.list-unstyled.login-pf-social-all > li.btn {
    background-image: none;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    padding:0;
    text-decoration: underline;
    color: #0C0C0C;
    display: inline-block !important;
}

.login-pf-social.list-unstyled.login-pf-social-all > li.btn:hover {
    text-decoration: none;
}

.login-pf-page .login-pf-social-link a, .zocial:hover {
    background: none !important;
}

#zocial-iiaba span {
    font-size: 16px;
    color: #0C0C0C;
}

.login-pf-page .card-pf p {
    font-size:16px;
}
#password {
    border-radius: 4px;
}

#toggle-password.btn  {
    font-weight: 500;
    font-size: 2rem;
    background-color: transparent;
    padding: 0;
    border-color: transparent;
    z-index: 10;
}

#toggle-password::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 10px;
    width: 16px; height: 16px;
    background: url(../img/eye-open-icon.svg) no-repeat center center;
}

.form-group.login-pf-settings {
    padding-top:8px;
}

#toggle-password[aria-pressed="true"]::after {
    background-image: url(../img/eye-closed-icon.svg);
}

/*navigation*/

.nav {
    padding-right: 0;
}

.nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #eaecec;
}


.nav li:first-child {
    margin-top: 50px;
}

.nav li a {
    display: block;
    text-decoration: none;
    font-size: 19px;
    color: #062974;
    padding: 10px 20px 10px 20px;
}

.nav .logo {
    display: block;
    padding: 20px 0;
    text-decoration: none;
    content: url(../img/tc-edge-logo-lockup.png);
    width: 350px;
}

/* menu */

.nav .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

@media (max-width: 991.98px) {

    .nav .menu {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0px;
        z-index: 1;
        overflow-y: visible;
    }

    .nav li {
        max-width: 90%;
        border-bottom: 1px solid #d8dadd;
        margin-left: auto;
        margin-right: auto;
    }

    .nav li:last-child {
        padding-bottom: 30px;
    }

    .nav li > span {
        font-weight: 300;
        font-size: 24px;
        border-bottom: 1px solid #d8dadd;
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
        text-transform: uppercase;
        display: block;
    }

    .nav li a:hover {
        text-decoration: underline;
    }

    .nav li:last-child {
        border-bottom: none;

    }
}

/* menu icon */

.nav .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

.nav .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
    z-index: 100;
}

.nav .menu-icon .navicon:before,
.nav .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.nav .menu-icon .navicon:before {
    top: 7px;
}

.nav .menu-icon .navicon:after {
    top: -7px;
}

/* menu btn */

.nav .menu-btn {
    display: none;
}

.nav .menu-btn:checked ~ .menu {
    max-height: 100%;
}

.nav .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}

.nav .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.nav .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}

.nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}

@media (min-width: 992px) {

    .nav li a {
        padding: 20px 30px;
        color: #545963;
        font-size: inherit;
    }

    .nav .menu > li:last-child a {
        font-weight: bold;
    }

    .nav li a:hover {
        color: #1a1e23;
    }

    .nav .menu {
        clear: none;
        max-height: none;
        display: flex;
        justify-content: center;
    }

    .nav .menu-icon, .nav .mobile-menu {
        display: none;
    }

    .nav ul {
        background-color: transparent;
        position: relative;
        top: 10px;
        padding-bottom: 10px;
    }

    .nav li:first-child {
        margin-top: 0px;
    }
}

.login-logo-container {
    max-width: 450px;
    margin: 0 auto 40px;
    padding-inline:20px;

}

.logo {
    content: url(../img/tc-edge-logo-lockup.png);
    width: 300px;
}

footer {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    background-color: #381574;
}

footer > div:first-child {
    background-color: #A200FF;
    padding: 10px 0;
}

footer > div:first-child > div:first-child {
    max-width: 1140px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

footer > div:first-child > div:first-child > span {
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline-block;
    line-height: 1;
}

@media (min-width: 768px) and (max-width: 991.98px) {

    footer > div:nth-child(3) {
        padding-left: 55px;
        padding-right: 55px;
    }
}

@media (min-width: 768px) {
    footer > div:nth-child(3) > div.footer-list-container:last-child {
        text-align: center;
    }
}

footer > div:last-child {
    color: #fff;
    padding-top: 8px;
    padding-bottom: 50px;
    line-height: 21px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

footer h4, footer li {
    padding-bottom: 12px;
}

footer h4 {
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

footer ul {
    padding-inline-start: 0;
}

footer li {
    list-style: none;
}

footer a:hover, .footer-list-container .btn {
    color: #fff;
}

footer a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.1em;
    margin:0 15px 15px 0;
    display: inline-block;
    white-space: nowrap;
    text-decoration: underline;
}

footer a:hover {
    text-decoration: none;
}

footer a:visited {
    color:#ffffff;
}

footer div:last-child {
    font-size: 14px;
    padding-right: 15px;
    padding-left: 15px;

    @media (min-width: 600px) {
        max-width: 600px;
        margin-inline: auto;
    }
}

footer div:last-child > a:last-child {
    margin-right: 0;
}

.footer-list-container {
    padding-right: 20px;
    flex: 0 0 100%;
    max-width: 100%;
}

.footer-list-cotainer:last-child {
    padding-right: 0;
}

.footer-list-container .btn {
    font-size: 14pt;
    padding: 5px 25px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-list-container {
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }
}

@media (min-width: 992px) {
    .footer-list-container {
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }
}

.tc-footer-icon {
    content: url(../img/tc-edge-logo-lockup-white.png);
    max-width: 300px;
    height: auto;
    display: block;
    margin: 3rem auto 1rem auto;
}

.social-icons {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 6px;
}

.facebook-icon {
    content: url(../img/facebook-icon.svg);
}

.twitter-icon {
    content: url(../img/twitter-icon.svg);
}

.youtube-icon {
    content: url(../img/youtube-icon.svg);
}

.linkedin-icon {
    content: url(../img/linkedin-icon.svg);
}

