﻿/*  
    TTRS Custom Style
*/

@font-face {
    font-family: 'ProximaNova-Regular';
    src: local('/font/ProximaNova-Regular.woff'), url('/font/ProximaNova-Regular.woff');
}

@font-face {
    font-family: 'ProximaNova-Sbold';
    src: local('../font/ProximaNova-Sbold.woff'), url('/font/ProximaNova-Sbold.woff');
}

/* Theme */

.dark-theme {
    --input-color: #3a3a3a;
    --input-focus-color: #363636;
    --input-background-color: #3a3a3a;
    --input-webkit-color: #222;
    --input-webkit-color-focus: #363636;
    --login-background-color: #323232;
    --placeholder-color: #b4b4b4;
    --remember-me-checkbox-color: #3f3f3f;
    --remember-me-checkbox-border-color: #3f3f3f;
    --remember-me-checkbox-checked-color: #464646;
    --input-text-color: #fff;
    --bottom-text-color: #b4b4b4;
    --bottom-text-color-hover: #88c744;
    --twitter-text: #b4b4b4;
    --error-color: #d33b3e;
}

.light-theme {
    --input-color: #f8f8f8;
    --input-focus-color: #fff;
    --input-background-color: #f8f8f8;
    --input-webkit-color: #f8f8f8;
    --input-webkit-color-focus: #fff;
    --login-background-color: #4a8bbb;
    --placeholder-color: #b4b4b4;
    --remember-me-checkbox-color: #f8f8f8;
    --remember-me-checkbox-border-color: #dbdbdb;
    --remember-me-checkbox-checked-color: #f8f8f8;
    --input-text-color: #464655;
    --bottom-text-color: #b4b4b4;
    --bottom-text-color-hover: #88c744;
    --twitter-text: #b6d0e3;
    --error-color: #f1ea82;
}




/* Theme End */


 body {
    font: normal 14px 'ProximaNova-Regular';
    color: #f0f0f0;
    position: absolute;
    width: 100%;
    height: 100%;
}

.form-control {
    border: none;
    background: var(--input-background-color);
    height: 36px;
    width: 100%;
    text-indent: 10px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    font-size: 15px;
    padding: 0;
}

.form-control:focus {
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--placeholder-color);
}

.form-control:-ms-input-placeholder {
    color: var(--placeholder-color);
}


#content-area {
    clear: both;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    display: table;
    height: 100%;
    background-color: #f6f6f6;
    min-height: 600px;
    position: absolute;
}


 .content-left {
    display: table-column;
    vertical-align: middle;
    width: 480px;
    color: #000;
    padding-left: 80px;
    height: 100%;
    float: right;
    position: relative;
    right: -80px;
}

 .ttrs-sign {
    background: url('/images/logo-symbol-color.svg') 0 0 no-repeat;
    background-size: contain;
    height: 50px;
    width: 64px;
    margin-top: 60px;
    margin-bottom: 25px;
}

h1 {
    background-color: inherit;
    color: inherit;
    font-size: 20px;
    font-weight: bold;
    padding: 0;
    padding-bottom: 5px;
}

 .content-left .middle h1 {
    margin-bottom: 0;
}

 h4 {
    font-size: 15px;
    line-height: 1.33;
    color: #5a5a5a;
    text-transform: none;
    padding-bottom: 18px;
    margin-bottom: 0;
}


p {
    font-size: 15px;
    line-height: 1.33;
    letter-spacing: normal;
    color: #000000;
}

ul.check-style {
    padding: 0;
}

ul.check-style li {
    list-style: none;
    float: left;
    width: 50%;
    font-size: 15px;
    line-height: 1.33;
    white-space: nowrap;
}

ul.check-style li:before {
    content: '';
    background: url('/images/ico-check-orange.svg') 0 0 no-repeat;
    background-size: 19px 15px;
    width: 19px;
    height: 15px;
    display: block;
    float: left;
    margin-right: 12px;
}

.form-group .checkbox {
    padding-left: 30px;
}

.form-group .checkbox .label:after {
    background: var(--remember-me-checkbox-color);
}

.reactiveHeader {
    margin-top: 60%;
}

.bottom {
    position: absolute;
    bottom: 0;
    display: table-footer-group;
    color: var(--bottom-text-color);
    vertical-align: bottom;
}

.bottom a {
    color: var(--bottom-text-color);
}

.bottom a:hover {
    color: var(--bottom-text-color-hover);
}

.bottom ul li {
    list-style: none;
    float: left;
    font-size: 13px;
    line-height: 1.33;
    width: auto;
}

.content-middle {
    display: table-cell;
    background-image: url('/images/laptop-large.webp');
    background-position-y: 5px;
    background-repeat: no-repeat;
    background-size: cover;
    width: 600px;
}

.content-right {
    display: table-cell;
    vertical-align: middle;
    background-color: var(--login-background-color);
    height: 100%;
    padding-left: 50px;
    padding-right: 50px;
    color: #f0f0f0;
}

 /* Login Form */

 .login-form {
    line-height: 42px;
    font-size: 14px;
}

 .login-form h1 {
    font-size: 27px;
    font-weight: bold;
    line-height: 1.19;
    padding: 0;
    background: none;
    margin-bottom: 35px;
}

 .login-form .error-area {
    height: 30px;
    display: flex;
    align-items: flex-end;
}

 .login-form .form-control {
    width: 100%;
    height: 34px;
    border-radius: 3px;
}

 .login-form a {
    color: #fff;
}

 .login-form a:hover {
    color: #88c744;
}

 .login-form a:visited:not(:hover) {
    color: #fff;
}

 .login-form .validation-summary-valid ul,
 .login-form .validation-summary-errors ul {
    list-style-type: none;
    padding-left: 0; 
}

 .login-form .error-text{
     color: var(--error-color);
 }

 .login-form #private-policy {
    line-height: 18px;
    margin: 20px 0;
    color: var(--bottom-text-color);
    font-size: 13px;
}

 label.show-password {
    width: 23px;
    z-index: 10000;
    left: 253px;
    height: 32px;
    cursor: pointer;
    position: absolute;
    top: 3px;
}

 label.show-password:hover:after,
 label.show-password :active:after {
    background-image: url('/images/ico-show.svg');
    opacity: 1;
}

 label.show-password:after {
    content: '';
    position: absolute;
    right: 5px;
    background-image: url('/images/ico-show.svg');
    opacity: 0.4;
    background-size: 21px 13px;
    display: inline-block;
    width: 21px;
    height: 13px;
    top: 9px;
}

 /* RememberMe checkbox */

.check input[type="checkbox"] {
    display: none;
}

.check label {
    position: relative;
    padding-left: 30px;
    float: none;
}

.check label:after,
.check input[type="checkbox"]:checked + label:before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 25%;
    left: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid var(--remember-me-checkbox-border-color);
    cursor: pointer;
}

.check label:active:after,
.check input[type="checkbox"]:checked + label:before {
    background-color: var(--remember-me-checkbox-checked-color)!important;
    background: url(/images/check.svg) no-repeat;
    background-size: 13px 12px;
    background-position: 4px 4px;
    z-index: 10;
}

/* RememberMe checkbox End */

/* Login Form End */

/*Others*/

.twitter-block {
    display: table-footer-group;
    position: absolute !important;
    width: 280px;
    color: var(--twitter-text);
    bottom: 12px;
}

.no-email-warning {
    padding-top: 10px;
    color: #b4b4b4;
}
.british-dyslexia-label {
    width: 100px;
    height: 46px;
    display: inline-block;
    margin-right: 10px;
}
.login-footer-text {
    max-width: 350px;
    display: inline-block;
}
 div.bottom.login-footer {
    max-width: 500px;
    width: 100%;
    display: flex;
}
.login-footer-text > div:first-child {
    margin-bottom: 6px;
}
.login-footer-text > * {
    display: inline-block;
}

.footer-terms {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
}
.right-footer {
    margin-left: 10px;
}
.copyright-version-container {
    display: flex;
    justify-content: flex-start;
    white-space: nowrap;
}
.footer-container {
    width: 1000px;
    display: flex;
    justify-content: flex-start;
}

/*Others End*/


/* User Inputs */

.user-input-background {
    background: var(--input-background-color);
    color: var(--input-text-color) !important;
}

.user-input-background:focus {
    background: var(--input-focus-color);
}

.input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px red inset;
    -webkit-text-fill-color: red !important;
}

.input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px red inset;
    -webkit-text-fill-color: red !important;
}

/* User Inputs End */


/* Custom Bootstrap */
@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 20px;
}

.margin-right-10 {
    margin-right: 10px;
}
.w-110 {
    width: 110px;
}

.w-280 {
    width: 280px;
}
/* Custom  Bootstrap End*/


/* Mobile Style */
@media (max-width: 991px) {
    #content-area {
        min-height: 730px;
    }

    .forgot > div .form-group {
        margin: 0;
    }

    .content-left .middle,
    .content-left div.bottom.login-footer,
    .content-middle {
        display: none;
    }

    .content-left {
        width: unset;
        padding-left: 0;
        right: 0;
        position: unset;
    }

    .content-left .top {
        position: absolute;
        left: calc(50% - 140px);
    }

    .content-left .top .ttrs-sign {
        background: url('/images/logo-hor-white-full.svg') 0 0 no-repeat;
        background-size: contain;
        height: 50px;
        width: 165px;
        margin-top: 20px;
    }

    .content-right {
        padding: 0 20px 0px 20px;
    }

    .login.forgot .content-right {
        display: block;
    }

    .content-right,
    .content-right > div {
        width: unset;
    }

    .content-right > div .top {
        padding-bottom: 10px;
        position: relative;
        left: calc(50% - 140px);
        width: 280px;
    }

    .content-right > div .top .for-password > span {
        position: relative;
        top: -15px;
    }

    .content-right > div .bottom #twitterMessage {
        word-break: break-word;
    }

    /* login form*/
    .content-right > div .top .login-form h1 {
        font: normal 22px 'ProximaNova-Sbold';
    }

    .content-right > div .top .login-form .row .inline-block.check {
        padding-left: 0;
        height: 22px;
        margin-bottom: 30px;
    }

    .content-right > div .top .login-form .row .inline-block.check label {
        top: -10px;
    }

    .content-right > div .top .login-form .row button {
        width: 100%;
    }

    .content-right > div .top .login-form .row button > span {
        font: normal 17px/40px 'ProximaNova-Sbold';
    }

    .content-right > div .top .login-form .form-control{
        box-sizing: border-box;
    }

    /* login form*/

    /* forgot content */
     .login.forgot {
        min-height: 500px;
    }

     .login.forgot .content-right {
        padding-top: 120px !important;
    }

     .login.forgot .content-right > div .bottom {
        position: absolute;
        margin-right: 20px;
    }
    /* forgot content */

    /* forgot form */
     .login.forgot .content-right > div .top .forgot-password-form .mobile-title {
        display: inline-block;
    }

     .login.forgot .content-right > div .top .forgot-password-form .mobile-title > a {
        position: relative;
        left: -5px;
        width: 24px;
        height: 24px;
        float: left;
        background: url(/images/mobile/arrow-back.svg) 0 0 no-repeat;
    }

     .login.forgot .content-right > div .top .forgot-password-form .mobile-title > h1 {
        padding-bottom: 20px;
        font-size: 22px;
        float: right;
        margin: 0;
    }

     .login.forgot .content-right > div .top .forgot-password-form .mobile-description {
        font-size: 15px;
        padding-bottom: 20px;
    }

     .login.forgot .content-right > div .top .forgot-password-form label {
        display: none;
    }

     .login.forgot .content-right > div .top .forgot-password-form .form-control,
     .login.forgot .content-right > div .top .forgot-password-form button {
        width: 280px;
    }

     .login.forgot .content-right > div .top .forgot-password-form .form-control::placeholder {
        text-indent: 16px;
    }

     .login.forgot .content-right > div .top .forgot-password-form .form-control:-ms-input-placeholder {
        text-indent: 16px;
    }

     .login.forgot fieldset {
        clear: unset;
    }
    /* forgot form */
}
/* Mobile Style End*/

/* Themes */

/*light theme*/



/*light theme end*/