body {
    font-family: "Roboto", sans-serif;
    height: 100vh;
    padding: 0;
    margin: 0;
    background-color: #fff;
    font-size: 14px;
}
a {
    text-decoration: none;
    color: #000;
}
a:hover {
    color: #009CD7;
}
.blue-link,.link1 {
    color: #009CD7;
}
.blue-link:hover,.link1:hover {
    color: #000;
}
.required {
    color: rgba(215,44,13,1);
    font-weight: 700;
}
.alert-success,.alert-danger {
    background-color: #d6e6dd;
    color: rgb(10, 54, 34);
    padding: 10px;
    border-radius: 6px;
    border: 1px solid rgb(163, 207, 187);
    font-size: 14px;
}
.alert-danger {
    background-color: #f1aeb5;
    color: rgb(88, 21, 28);
    border-color: rgb(241, 174, 181);
}
.link1 {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}
.font-12 {
    font-size: 12px;
}
.font-500 {
    font-weight: 500;
}
.mb15 {
    margin-bottom: 15px;
}
.mb10 {
    margin-bottom: 15px;
}
.my30 {
    margin: 30px 0;
}
.mr10 {
    margin-right: 10px;
}
.mt5 {
    margin-top: 5px;
}
.mr5 {
    margin-right: 5px;
}
.mb5 {
    margin-bottom: 5px;
}
.ml5 {
    margin-left: 5px;
}
.text-center {
    text-align: center;
}                                                                                                                                       
.text-right {
    text-align: right;
}
.content {
    display: flex;
    min-height: 100%;
    /* min-height: 1px; */
    align-items: center;
}
.center-aligned {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex: 1;
}
.left-side {
    width: 40%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
    /* box-shadow: 0px 34px 90px rgba(13, 19, 43, 0.6); */
    padding: 35px 0;
}

.right-side {
    flex: 1;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
}
.right-side.has-no-bk {
    background-color: #f9f9f9;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}
.field-wrap {
    user-select: none;
    /* margin-bottom: 17px; */
}
.field-wrap .field-lbl {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.4rem;
}
.field-wrap .field-input, .field-wrap .field-select {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.4rem;
    border: none;
    text-transform: none;
    letter-spacing: normal;
    position: relative;
    display: flex;
    align-items: center;
    color: rgba(32, 34, 35, 1);
    cursor: text;
}
.input-ctrl {
    /* line-height: 2.4rem; */
    text-transform: none;
    letter-spacing: normal;
    position: relative;
    z-index: 20;
    display: block;
    flex: 1 1;
    width: 100%;
    min-width: 0;
    min-height: 1.6rem;
    margin: 0;
    padding: 0.3rem 0.5rem;
    background: 0 0;
    border: 0.1rem solid transparent;
    font-family: inherit;
    font-size: 13px;
    font-weight: inherit;
    -webkit-appearance: none;
    appearance: none;
    caret-color: rgba(32, 34, 35, 1);
    color: #6D7175;
    border-radius: 3px;
}
.field-wrap .field-bk {
    position: relative;
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 1px solid #c9cccf;
    border-top-color: rgba(174, 180, 185, 1);
    border-radius: 0.4rem;
    pointer-events: none;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}
.field-wrap .field-bk:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -0.2rem;
    right: -0.2rem;
    bottom: -0.2rem;
    left: -0.2rem;
    display: block;
    pointer-events: none;
    box-shadow: 0 0 0 -0.2rem rgba(69, 143, 255, 1);
    transition: box-shadow .1s cubic-bezier(0.4, 0.22, 0.28, 1);
    border-radius: 0.5rem;
}
.field-wrap.has-error .field-lbl {
    color: rgba(253, 87, 73, 1);
}
.field-wrap.has-error .field-select .field-bk,
.field-wrap.has-error .field-input .field-bk,
.field-wrap.has-error .input-ctrl:focus-visible + .field-bk,
.field-wrap.has-error .field-select select:focus-visible + .field-bk {
    border-color: rgba(253, 87, 73, 1);
    border: 1px solid rgba(253, 87, 73, 1);                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ;
}
.field-wrap.has-error .field-select:focus-visible,
.field-wrap.has-error .input-ctrl:focus-visible {
    outline-color: rgba(253, 87, 73, 1);
}
.tb-checkbox:focus-within {
    outline: 2px solid #000;
    border-radius: 3px;
}
.tb-checkbox input:focus-visible {
    outline: 0;
}
.tb-btn-primary {
    position: relative;
    display: block;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.6rem;
    border-radius: 0.4rem;
    border: 1px solid rgba(186, 191, 195, 1);
    border-top-color: rgba(201, 204, 207, 1);
    border-bottom-color: rgba(186, 191, 196, 1);
    line-height: 1;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    font-weight: 500;
    position: relative;
    border-width: 0;
    border-color: transparent;
    box-shadow: var(--tb-button-drop-shadow),var(--tb-button-inner-shadow);
    color: #fff;
    background: #009CD7;
    font-weight: 600;
    width: 100%;
    font-size: 14px;
}
.tb-btn-primary:disabled {
    transition: none;
    box-shadow: none;
    border: 1px solid rgb(210, 213, 216);
    background: rgb(250, 251, 251) !important;
    color: rgb(140, 145, 150);
}
.tb-btn-primary:hover {
    background: #028cc1;
}

.tb-checkbox input {
    position: absolute;
    width: 1px;
    height: 1px;
}
.tb-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.tb-checkbox span {
    margin-left: 5px;
}
svg.hover {
    position: absolute;
    visibility: hidden;
}
.tb-checkbox input:checked + svg, 
.tb-checkbox.checked svg.hover, 
.tb-checkbox1:hover svg.hover {
    visibility: visible;
}
.signin {
    width: 90%;
}
form.login-form {
    width: 80%;
}


.sso-login {
    border-top: 1px solid #d4d4d3;
    margin-top: 32px;
    padding-top: 30px;
}

.sso-login a {
    border: 1px solid #d4d4d3;
    text-decoration: none;
    display: flex;
    padding: 10px;
    border-radius: 0.4rem;
    margin-bottom: 5px;
    color: #8d8d8d;
    align-items: center;
    justify-content: center;
}
.sso-login a > span {
    width: 200px;
    display: flex;
    align-items: center;
}
.sso-login a svg {
    fill: #8d8d8d;
    margin-right: 15px;
}
.sso-login a:hover {
    background-color: #d4d4d3;
    color: #000;
    /* color: #fff; */
}
.sso-login a:hover  svg{
    fill: #000000;
}


.logo {
    position: absolute;
    right: 40px;
    width: 121px;
    background-color: #fdfdfd;
    padding: 14px;
    border-radius: 10px;
    top: 40px;
}

.middle-part h2 {
    font-size: 43px;
    color: #fff;
    margin: 0;
}

.middle-part {
    max-width: 500px;
    text-align: center;
}

.middle-part p {
    font-size: 19px;
    color: #fff;
    margin: 20px 0;
}

#popover-password {
    font-size: 13px;
}
#popover-password p {
    color: #a0a9b4;
    font-size: 15px;
    line-height: 22px;
}
.text-success {
    color: #28a745 !important;
}
.text-danger {
    color: #dc3545 !important;
}
.text-warning {
    color: #ffc107 !important;
}
.progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}
#popover-password .progress {
    height: 5px;
}
#popover-password .list-unstyled {
    padding-left: 0;
    list-style: none;
}
#popover-password .list-unstyled li span{
    vertical-align: middle;
}
#popover-password .progress #password-strength {
    height: 5px;
    background-color: #5cb85c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    transition: width .6s;
}
#popover-password .progress #password-strength.progress-bar-danger {
    background-color: #d9534f;
}
#popover-password .progress #password-strength.progress-bar-warning {
    background-color: #f0ad4e;
}
#popover-password .progress #password-strength.progress-bar-success {
    background-color: #5cb85c;
}
.spinner {
    display: inline-block;
    width: .5rem;
    height: .5rem;
    border: 0.15em solid #6D7175;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border;
}

.field-wrap .field-input .spinner,
.field-wrap .field-select .spinner{
    position: absolute;
    right: 10px;
}

.field-wrap .field-input .toggle-password {
    position: absolute;
    right: 30px;
    cursor: pointer;
    z-index: 30;
    display: flex;
    align-items: center;
}

.field-wrap .field-input .toggle-password svg {
    width: 16px;
    height: 16px;
}
.app-install-loading {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.app-install-loading > div {
    min-width: 700px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.app-install-loading > div  .spinner{
    width: 3rem;
    height: 3rem;
    border: .3rem solid #6d7175;
    border-right-color: transparent;
}
.d-none {
     display: none;
}
.terms {
    color: #a0a9b4;
    margin-bottom: 10px;
}
body > .cc-window {
    background-color: #fff !important;
    color: #000 !important;
}

body > .cc-window a.cc-btn {
    background-color: #4d9bd4 !important;
    color: #fff !important;
}
#fc_frame {
    display: none !important;
}
#fc_frame.fc-open {
    display: block !important;
}
.two-column {
    display: flex;
}
.two-column > div {
    flex: 1;
}
.field-six-digits {
    display: flex;
}
.field-six-digits > div {
    /* flex: 1; */
    margin: 0 5px;
    /* max-width: 51px; */
    text-align: center;
}
.field-six-digits > div:first-child {
    margin-left: 0;
}

.field-six-digits > div:last-child {
    margin-right: 0;
}

.field-six-digits > div > input {
    text-align: center;
    font-weight: bold;
    color: #000;
}
@media(max-width: 900px) {
    .right-side {
        display: none;
    }
    .left-side {
        width: 100%;
        padding: 0;
        justify-content: center;
    }
    .signin {
        width: 100%;
    }
}
@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
