﻿@import 'variable.css';

* {
    margin: 0;
    padding: 0;
    font-family: 'Gotham';
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 50px rgba(98, 75, 131) inset;
    -webkit-text-fill-color: #fff;
}

.TelerikModalOverlay {
    width: 100% !important;
    height: 100% !important;
}

.CstmCheckBox {
    display: block;
    position: relative;
    padding-left: 25px;
    line-height: 19px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .CstmCheckBox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.CheckTick {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 16px;
    border: 2px solid #CFD3D4;
    border-radius: 3px;
}

    .CheckTick:after {
        content: "";
        position: absolute;
        display: none;
    }

.CstmCheckBox input:checked ~ .CheckTick:after {
    display: block;
}

.CstmCheckBox .CheckTick:after {
    left: 5px;
    top: 0px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.AppLogo{
    background:#fff;
}

.LoginMain {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

    .LoginMain:before {
        position: fixed;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0);
    }

    .LoginMain:after {
        position: fixed;
        content: "";
        width: 100%;
        height: 250px;
        bottom: -50px;
        left: 0;
        right: 0;
        background: radial-gradient(123.58% 123.59% at 50% 17.28%, #D1DE87 12%, #4F8132 96%);
        border-top-left-radius: 50%;
        border-top-right-radius: 50%;
        transform: scale(1.1);
    }

.LoginContentArea:before {
    position: fixed;
    content: "";
    width: 100%;
    height: 250px;
    bottom: -60px;
    left: 0;
    right: 0;
    background: url(/TriageImages/loginBottomVector.png)no-repeat center center;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    transform: scale(1.1);
}

.LoginContentArea {
    position: relative;
    z-index: 9;
    width: 100%;
    height: 100%;
    display: block;
}

.LoginVector {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
}

.LoginHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px 10px;
    max-width: 1920px;
    margin: auto;
}

.AppLogo img {
    height: 60px;
}

.HdrBtnWrap {
    display: flex;
    gap: 15px;
}

.PurpleButton {
    background: #472B6D;
    color: #fff;
    font-family: 'Gotham';
    font-size: 14px;
    padding: 10px 20px;
    line-height: normal;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
}

    .PurpleButton:hover {
        background: #E5E3F7;
        color: #472B6D;
    }

.GreyButton {
    background: #E5E3F7;
    color: #472B6D;
    font-family: 'Gotham';
    font-size: 14px;
    padding: 10px 20px;
    line-height: normal;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
}

    .GreyButton:hover {
        background: #472B6D;
        color: #fff;
    }


.HdrBtn .AppBtn {
    background: #472B6D;
    border: 1px solid #472B6D;
    color: #fff;
    font-family: 'Gotham';
    font-size: 14px;
    padding: 10px 20px;
    line-height: normal;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    min-width: 50px;
    text-align: center;
}


    .HdrBtn .AppBtn:hover {
        background: #fff;
        border: 1px solid #472B6D;
        color: #472B6D;
    }


.HdrBtn .SignUp {
    color: #472B6D;
    border: 1px solid #E5E3F7;
    background: #E5E3F7;
}

    .HdrBtn .SignUp:hover {
        background: #fff;
        color: #472B6D;
        border: 1px solid #472B6D;
    }

.LoginForm {
    position: relative;
    z-index: 9;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 400px;
    height: 480px;
    border-radius: 20px;
    background: rgba(71, 43, 109, .85);
    box-shadow: 0px 5px 9.8px 0px rgba(0, 0, 0, 0.11);
    padding: 25px;
    box-sizing: border-box;
    color: #fff;
}

    .LoginForm .hdrDesc {
        text-align: center;
        padding-bottom: 30px;
        padding-top: 5px;
    }

        .LoginForm .hdrDesc h3 {
            font-size: 18px;
            font-weight: 500;
        }

        .LoginForm .hdrDesc p {
            font-size: 14px;
            max-width: 275px;
            margin: 10px auto 0;
            line-height: 19px;
            color: #fff;
            font-weight: 400;
        }

.FormControlBox .input_text .InptLabel {
    display: block;
    font-size: 12px;
    padding-bottom: 5px;
}

.FormControlBox .input_text input {
    display: block;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #a395b6;
    box-sizing: border-box;
    padding: 7px 0px;
    color: #fff;
    font-size: 14px;
}

    .FormControlBox .input_text input::placeholder {
        color: #B5B8B9;
    }

.FormControlBox .input_text {
    margin-bottom: 30px;
    position: relative;
}

.loginBtn {
    background: #E5E3F7;
    color: #472B6D;
    display: block;
    border-radius: 50px;
    padding: 10px 20px;
    border: none;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    margin-top: 30px;
}

    .loginBtn:hover {
        background: #fff;
    }

.frgtPwd {
    text-align: center;
    margin-top: 20px;
    display: block;
    font-size: 13px;
}

    .frgtPwd a {
        color: #aea2bf;
        cursor: pointer;
        display: block;
        padding-bottom: 7px;
        text-decoration: underline;
    }

        .frgtPwd a:hover {
            color: #aea2bf;
        }

.StaySignCheckBox {
    color: #aea2bf;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.validationMessage {
    position: absolute;
    bottom: -20px;
    left: 0;
}

    .validationMessage .validation_text {
        font-family: 'Gotham' !important;
        font-size: 11px !important;
        text-align: left !important;
    }

.StaySignCheckBox input[type="checkbox"] {
    zoom: 1.2;
}

.PoweredByText {
    position: fixed;
    bottom: 25px;
    left: 0;
    right: 0;
    font-size: 17px;
    font-family: 'Gotham';
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding-bottom: 15px;
}

.VersionInfoText {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.EOHLogoFooter {
    position: fixed;
    bottom: 80px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.VersionInfoName {
    font-size: 12px;
    font-family: 'Gotham';
    background: rgba(0, 0, 0, .1);
    padding: 4px 10px;
    border-radius: 60px;
    color: #fff;
    display: inline-block;
    cursor:pointer;
}

    .VersionInfoName a, .VersionInfoName a:hover {
        color: #fff;
    }

.UserlogOutSuccessMessage {
    position: absolute;
    top: -20px;
    left: 0px;
    background: rgb(98, 75, 131);
    width: 400px;
    padding: 10px 0;
    font-family: 'Gotham';
    text-align: center;
    font-size: 14px;
    color: #45d827;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

    .UserlogOutSuccessMessage .material-symbols-outlined {
        font-size: 19px;
    }

    .UserlogOutSuccessMessage #LblErrorMsg {
        max-height: 35px;
        overflow-y: auto;
    }


    .RadWindow .rwCorner, .RadWindow .rwTitlebar, .RadWindow .rwStatusbar, .RadWindow .rwFooterCenter, .RadWindow .rwTitlebarControls td {
        background-image: none !important;
    }

.RadWindow .rwShadow .rwIcon {
    display: none !important;
}

.RadWindow .rwControlButtons a {
    cursor: pointer !important;
}

.RadWindow .rwControlButtons {
    margin: 2px 0 !important;
}

.RadWindow .rwControlButtons {
    width: auto !important;
}

.RadWindow .rwShadow .rwTopLeft, .RadWindow .rwShadow .rwTopRight {
    height: 50px !important;
}


.RadWindow .rwControlButtons .rwCloseButton {
    position: relative;
    background-image: none;
    text-indent: 0;
    width: 30px !important;
    height: 30px !important;
    background: #FFCDD2 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

    .RadWindow .rwControlButtons .rwCloseButton:before {
        font-family: 'Material Symbols Outlined';
        font-weight: normal;
        font-style: normal;
        position: absolute;
        content: "\e5cd";
        color: #ff0000;
        font-size: 18px;
        line-height: normal;
    }

.RadWindow .rwControlButtons .rwReloadButton {
    position: relative;
    background-image: none;
    text-indent: 0;
    width: 30px !important;
    height: 30px !important;
    background: #E5E3F7 !important;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

    .RadWindow .rwControlButtons .rwReloadButton:before {
        font-family: 'Material Symbols Outlined';
        font-weight: normal;
        font-style: normal;
        position: absolute;
        content: "\e042";
        color: #472B6D;
        font-size: 18px;
        line-height: normal;
    }


.RadWindow {
    display:inline-table;
    background: #f7f7f7;
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, .15);
    border-radius: 10px;
    margin-top: 15px;
}


    .RadWindow .rwShadow em {
        padding: 0px 0 !important;
        font-size: 21px !important;
    }

.ModalDailogBox {
    background-image: none;
    background: #fff !important;
}

.UserlogOutSuccessMessage.redText {
    color: #F50057;
}

.UserlogOutSuccessMessage.GrnText {
    color: #45d827;
}

.LoginFormWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 185px);
}

.pass-input-field {
    position: relative;
}

    .pass-input-field .eye-icon {
        position: absolute;
        bottom: 2px;
        right: 4px;
        font-size: 20px;
        line-height: normal;
        cursor: pointer;
    }

@media only screen and (max-width: 1400px) {
    .PoweredByText {
        position: relative;
        margin-top: 10px;
        bottom: 0;
        padding-bottom: 10px;
    }
    .VersionInfoText {
        position: relative;
        margin-top: 0;
        bottom: 0;
        padding-bottom:15px;
    }
    .EOHLogoFooter {
        position: relative;
        margin-top: 0;
        bottom: 0;
        padding-top: 20px;
    }
    .LoginFormWrap{
        height:auto;
    }
}
