/* for IE preloader */

.plc-path {
    stroke: #27c;
    stroke-dasharray: 28, 999;
}

.forgot-pw {
    float: left;
    font-size: 13px;
    margin-left: 30px;
    margin-top: 12px;
    color: #407EC9;
}

.forgot-pw:focus,
.forgot-pw:hover {
    color: #01655f;
}


/* default input button style */

.submit-button {
    background-color: #7BA4DB !important;
    width: 10em !important;
    margin-top: 10px;
}


/* fix for bad template css */

.has-error .input-group-addon {
    border-color: transparent;
    background-color: transparent;
}

.bootstrap-select>.btn-default:before {
    background-color: transparent;
}


/* forgot password */

.fp-title {
    text-align: left;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #2b2b2b;
}

.fp-info {
    margin-bottom: 24px;
    color: #212121;
    text-align: left;
}


.fg-line:not([class*=has-]):after {
    background: #7BA4DB;
}

/** Registration form styles */
#register-form-cols {
    display: flex;
    flex-direction: row;
}

#register-form-cols > div:first-child {
    padding-right: .5em;
}

#register-form-cols > div:last-child {
    padding-left: .5em;
}

.lc-block .lcb-form img {
    max-width: 500px;
}

.registration-content .lc-block {
    /* max-width: 700px; */
}

.registration-content div.input-group {
    margin-bottom: 10px;
}

.update-password-input {
    min-width: 70%;
}

div#user-info-form {
    flex-grow: 1;
    flex-shrink: 1;
    width: 50%;
    padding-right: .5em;
    /* width: 100%; */
}

div#bussiness-info-form {
    flex-grow: 1;
    flex-shrink: 1;
    width: 50%;
    padding-left: .5em;
}

body {
    margin: 0;
}

.background {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    align-items: center;
    overflow: auto;
}

.cs-logo {
    width: 150px;
}

.invis-spacer {
    flex: 0 1 60px;
}

.card {
    background: white;
    box-shadow: 0px 2px 6px 0px #888;
    border-radius: 10px;
    /* max-width: 500px; */
    margin: 20px;
}
.registration-content .card {
    /* max-width: 1000px; */
}

.light-divider {
    height: 1px;
    background: #ddd;
}

a.action-button {
    border: 1px solid #676767;
    background: #efefef;
    min-width: 150px;
    text-align: center;
}
a.action-button:visited {
    
}
a.action-button:hover {
    
}
a.action-button:active {
    
}

.button-container {
    padding: 30px 15px 10px 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

/* width classes  */
.card-content--narrower, .lcb-form .instruction {
    max-width: 440px;
}

@media (min-width: 550px) {
    .card-content--narrower {
        width: 440px;
        max-width: unset;
    }
}


* {
    box-sizing: border-box;
}

.alert {
    margin-bottom: var(--cs-spacing-xl);
    border-radius: 6px;
    font-size: var(--cs-font-size-base);
    padding: var(--cs-spacing-sm);
}

/* add additional alert style to account for base css having alert-danger instead of alert-error  */
.alert-error {
    padding: var(--cs-spacing-sm) var(--cs-spacing-lg);
    background-color: #F44336;
    color: #fff
}

.alert-success {
    padding: var(--cs-spacing-sm) var(--cs-spacing-lg);
    background-color: #4caf50;
    color: #fff;
}

.alert-warning {
    border: 1px solid #ebe5bb;
    background-color: #fff9c9;
}

.alert-error .alert-link {
    padding: var(--cs-spacing-sm) var(--cs-spacing-lg);
    color: #e6e6e6
}


/* Password validations  */
.password-validation {
    text-align: left;
    font-size: var(--cs-font-size-base);
    line-height: 1.3em;
}
.password-validation__title {
    font-weight: var(--cs-font-weight-semi-bold);
    margin: 0;
}
.password-validation__list {
    list-style-type: none;
    padding: 0; 
    margin: 0;
}
.password-validation__list-item--pending {
    color: var(--cs-color-gray-6)
}
.password-validation__list-item--invalid {
    color: var(--cs-color-error);
}
.password-validation__list-item--valid {
    color: var(--cs-color-success);
}


body {
    background-color: var(--cs-color-gray-0); 
}