﻿#LogInBody {
    /*border: 1px solid red;*/
    width: 100%;
    min-width: 200px;
    height: 500px;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url("../Pictures/LogInPictures/LogIn_Background.jpg");
    overflow: hidden;
}

#LogInPanel {
    position: relative;
    margin: auto;
    top: 100px;
    width: 250px;
    height: 300px;
    border: 1px solid #d0d3d8;
    text-align: center;
    border-radius: 5px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.5);
    overflow: hidden;
}

#LogInTitle {
    font-family: Tahoma;
    font-size: 0.8em;
    font-weight: bold;
    text-align: center;
    color: #909090;
    padding: 2px 0px 2px 0px;
}

#loginLine {
    border: 1px solid #d0d3d8;
    border-top: 1px solid #d0d3d8;
    border-bottom: 1px solid #ffffff;
}

.UserId, .UserPassword, #ForgetPassword, #btnLogIn, .LoginWarning, #lblRemember, #ForgetPassword_Email, #ForgetRegister {
    position: relative;
    margin: 20px auto 15px auto;
    font-family: Tahoma;
    font-style: normal;
    padding: 5px;
    text-align: center;
}

.UserId, .UserPassword, #ForgetPassword_Email {
    width: 200px;
    display: block;
    border: 1px solid #d0d3d8;
    font-size: 15px;
    border-radius: 3px;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 5px center;
    direction: ltr;
}

.UserId {
    background-image: url("../Pictures/LogInPictures/Person_Icon.png");
    margin: 10px auto 15px auto !important;
}

.UserPassword {
    background-image: url("../Pictures/LogInPictures/Lock_Icon.png");
    margin: 20px auto 5px auto;
}

#lblRemember {
    display: inline-block;
    font-size: 12px;
    text-decoration: none;
    color: #909090;
    margin: 0px 0px 5px 0px;
}

#ForgetPassword, #ForgetRegister {
    display: inline-block;
    font-size: 12px;
    text-decoration: none;
    color: #909090;
    margin: 10px auto 0px auto;
}

    #ForgetPassword:hover, #ForgetRegister:hover {
        color: #5e5e5e;
    }

    #ForgetPassword:active, ##ForgetRegister:active {
        color: #171717;
    }

#ForgetRegister {
    width: 120px;
    margin: 0px !important;
    padding: 0px !important;
    display: inline-block !important;
}


.LoginWarning {
    display: inline-block;
    font-size: 12px;
    text-decoration: none;
    color: #c60000;
    margin: 0px;
    padding: 0px;
}


.btnLogIn {
    width: 200px;
    display: block;
    position: relative;
    -moz-box-shadow: inset 0px 1px 0px 0px #caefab;
    -webkit-box-shadow: inset 0px 1px 0px 0px #caefab;
    box-shadow: inset 0px 1px 0px 0px #caefab;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #77d42a), color-stop(1, #5cb811));
    background: -moz-linear-gradient(top, #77d42a 5%, #5cb811 100%);
    background: -webkit-linear-gradient(top, #77d42a 5%, #5cb811 100%);
    background: -o-linear-gradient(top, #77d42a 5%, #5cb811 100%);
    background: -ms-linear-gradient(top, #77d42a 5%, #5cb811 100%);
    background: linear-gradient(to bottom, #77d42a 5%, #5cb811 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#77d42a', endColorstr='#5cb811',GradientType=0);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #268a16;
    cursor: pointer;
    color: #000000;
    font-family: Tahoma;
    font-size: 13px;
    font-style: normal;
    font-weight: bold;
    padding: 8px 0px 8px 0px;
    margin: 5px auto 2px auto;
    text-decoration: none;
    text-shadow: 0px 1px 0px #ffee66;
}

    .btnLogIn:hover {
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #5cb811), color-stop(1, #77d42a));
        background: -moz-linear-gradient(top, #5cb811 5%, #77d42a 100%);
        background: -webkit-linear-gradient(top, #5cb811 5%, #77d42a 100%);
        background: -o-linear-gradient(top, #5cb811 5%, #77d42a 100%);
        background: -ms-linear-gradient(top, #5cb811 5%, #77d42a 100%);
        background: linear-gradient(to bottom, #5cb811 5%, #77d42a 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5cb811', endColorstr='#77d42a',GradientType=0);
        background-color: #5cb811;
    }

    .btnLogIn:active {
        position: relative;
        top: 1px;
    }


#imgWaiting {
    display: block;
    position: relative;
    margin: auto;
    visibility: hidden;
}

.WarningClass {
    background-color: #fffed0 !important;
}

.DisabledClass {
    pointer-events: none !important;
    opacity: 0.5;
    cursor: not-allowed;
}

.VisibleClass {
    visibility: visible !important;
}

/*Forget Password Panel*/

#ForgetPassword_Background {
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 99;
}

#ForgetPassword_Panel {
    position: fixed;
    left: 0;
    right: 0;
    top: 30%;
    margin: auto;
    width: 30%;
    min-width: 200px;
    height: auto;
    min-height: 170px;
    z-index: 9999;
    background-color: #ffffff;
    border-style: solid;
    border-color: #2672ec;
    border-width: 25px 3px 5px 3px;
    border-radius: 0px;
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.8);
    -moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.8);
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.8);
    overflow: hidden;
    cursor: move;
}


.ForgetPassword_Icon {
    position: absolute;
    width: 30px;
    height: 30px;
    left: 0px;
    top: 0px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 3px;
    background-image: url("../Pictures/UserDashboardPictures/ForgetPassword/forgot_password_icon.png");
}

.ForgetPassword_Title {
    width: 98%;
    height: auto;
    position: relative;
    margin: 0PX 0PX 5PX 0PX;
    padding: 1%;
    font-family: Tahoma;
    font-size: 13px;
    font-weight: normal;
    color: #000000;
}

    .ForgetPassword_Title span {
        display: block;
        margin: 0px;
        padding: 5px 0px 5px 0px;
        display: block;
        direction: rtl;
    }

    .ForgetPassword_Title b {
        display: inline-block;
        margin: 0px;
        padding: 3px 0px 3px 0px;
    }

#ForgetPassword_Email {
    width: 90%;
    background-image: url("../Pictures/UserDashboardPictures/ForgetPassword/Email_Close_icon.png");
}

.Mail_Button {
    width: 100%;
    height: auto;
    min-height: 20px;
    padding: 3px 0px 3px 0px;
    direction: rtl !important;
    text-align: right !important;
}


.BtnAccept, .BtnClose {
    display: inline-block;
    margin: 1px 5px 1px 0px;
    cursor: pointer;
    color: #000000;
    font-family: Tahoma;
    font-size: 11px;
    font-style: normal;
    font-weight: normal;
    padding: 5px 0px 5px 0px;
    text-decoration: none;
    text-align: right;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: left center;
}

.BtnClose {
    width: 90px;
    min-width: 90px;
    float: left;
    margin: 0px 0px 3px 5px;
    border: 1px solid #e9c000;
    background-color: #ffe04e;
    -moz-box-shadow: inset 0px 1px 0px 0px #f0e3a6;
    -webkit-box-shadow: inset 0px 1px 0px 0px #f0e3a6;
    box-shadow: inset 0px 1px 0px 0px #f0e3a6;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e3d280', endColorstr='#ccb237',GradientType=0);
    background-image: url("../Pictures/UserDashboardPictures/ForgetPassword/Exit_icon_Password.png");
}


    .BtnClose:hover {
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ccb237', endColorstr='#e3d280',GradientType=0);
        background-color: #f5d128;
    }


.BtnAccept {
    width: 90px;
    min-width: 90px;
    border: 1px solid #57c101;
    background-color: #92ff3a;
    -moz-box-shadow: inset 0px 1px 0px 0px #c4eea2;
    -webkit-box-shadow: inset 0px 1px 0px 0px #c4eea2;
    box-shadow: inset 0px 1px 0px 0px #c4eea2;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a8e379', endColorstr='#76c435',GradientType=0);
    background-image: url("../Pictures/UserDashboardPictures/ForgetPassword/Accept_icon.png");
    float: right;
    margin: 0px 5px 3px 0px;
}

    .BtnAccept:hover {
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#76c435', endColorstr='#a8e379',GradientType=0);
        background-color: #68e900;
    }

    .BtnAccept:active, .BtnClose:active {
        position: relative;
        top: 1px;
    }


.ForgetPassword_Hidden {
    visibility: hidden !important;
}

#ForgetPassword_Warning, .ForgetPassword_Accept {
    width: 100%;
    height: 15px;
    min-height: 15px;
    display: table;
    color: red;
    font-family: Tahoma;
    font-size: 13px;
    font-weight: normal;
    text-align: center;
    margin: 0px 0px 2px 0px;
    padding: 2px 0px;
}

.ForgetPassword_Accept {
    color: #316f00 !important;
}

#ActivePassword_Background {
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(214,255,181,0.1);
    z-index: 99;
}

.ActivePassword_Background_Expire {
    background-color: rgba(255,181,181,0.1) !important;
    z-index: 99;
}

#ActivePassword_Result {
    position: fixed;
    left: 0;
    right: 0;
    margin: auto;
    padding: 20px 10px;
    top: 20%;
    width: 30%;
    max-width: 300px;
    min-width: 180px;
    text-align: center;
    font-family: Tahoma;
    font-size: 14px;
    font-weight: normal;
    background-color: rgba(214,255,181,0.8);
    color: #242424;
    border: 1px solid #5db912;
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.8);
    -moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.8);
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.8);
    z-index: 99999;
}

.ActivePassword_Result_Expire {
    background-color: rgba(255,181,181,0.8) !important;
    border: 1px solid #b91212 !important;
}

#btn_CloseResult {
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    padding: 2px;
    font-family: Tahoma;
    font-size: 16px;
    font-weight: bold;
    color: #242424;
}

    #btn_CloseResult:hover {
        color: red;
    }

.ActivePassword_Result_Hidden {
    display: none;
    visibility: hidden;
}

/*Forget Password Panel*/
