/*
---------------------------------------------------------------------
                 _                        _         _ _            
                | |                      | |       | (_)            
   ___ _   _ ___| |_ ___  _ __ ___    ___| |_ _   _| |_ _ __   __ _ 
  / __| | | / __| __/ _ \| '_ ` _ \  / __| __| | | | | | '_ \ / _` |
 | (__| |_| \__ \ || (_) | | | | | | \__ \ |_| |_| | | | | | | (_| |
  \___|\__,_|___/\__\___/|_| |_| |_| |___/\__|\__, |_|_|_| |_|\__, |
                                               __/ |           __/ |
                                              |___/           |___/ 
---------------------------------------------------------------------
*/


/* Main Colour Variables for Login Screen */

:root {
    /* Text  */
    --DefaultText: #555555;
    /* Hyperlink: Text  */
    --LinkText: #555555;
    /* Hyperlink: Hover  */
    --LinkTextHover: #f57b00;
    /* Input: Background  */
    --InputBackground: #8182851f;
    /* Input: Border  */
    --InputBorder: #005a8363;
    /* Button: Background  */
    --ButtonBackground: #005a83;
    /* Button: Background Hover */
    --ButtonBackgroundHover: #f57b00;
    /* Button: Border  */
    --ButtonBorder: #45555e88;
    /* Button: Border Hover */
    --ButtonBorderHover: #f57b00;
    /* Button: Text  */
    --ButtonText: #ffffff;
    /* Button: Text Hover */
    --ButtonTextHover: #ffffff;
}


/* Login Page Body */

body.nuq-login {
    width: 100% !important;
    height: 100% !important;
    bottom: 0px;
    left: 0px;
    position: fixed;
    right: 0px;
    top: 0px;
}


/* Body Font */

body.nuq-login b {
    font-weight: normal !important;
}


/* Login Input Fields */


/* Browser Autofill For Username & Password */

.nuq-login-window .dxeEditArea_Office2010Blue,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid var(--InputBorder) !important;
    -webkit-text-fill-color: var(--DefaultText) !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0) inset !important;
    transition: background-color 5000s ease-in-out 0s !important;
    color: var(--DefaultText) !important;
}


/* Username/Login Input Field */

#userName.ui-widget.ui-widget-content.ui-corner-all {
    background: var(--InputBackground) !important;
    color: var(--DefaultText) !important;
    border-color: var(--InputBorder);
    border-radius: 5px !important;
}

#userName.ui-widget.ui-widget-content.ui-corner-all::selection {
    background: var(--InputBackground) !important;
    color: var(--DefaultText) !important;
    border-color: var(--InputBorder);
    border-radius: 5px !important;
}


/* Password Input Field */

#password.ui-widget.ui-widget-content.ui-corner-all {
    background: var(--InputBackground) !important;
    color: var(--DefaultText) !important;
    border-color: var(--InputBorder);
    border-radius: 5px !important;
}


/* New Password Input Field */

#newPassword.ui-widget.ui-widget-content.ui-corner-all {
    background: var(--InputBackground) !important;
    color: var(--DefaultText) !important;
    border-color: var(--InputBorder);
    border-radius: 5px !important;
}


/* New Password Label */

#lblnewPassword {
    font-weight: normal !important;
}


/* Confirm New Password Input Field */

#confirmPassword.ui-widget.ui-widget-content.ui-corner-all {
    background: var(--InputBackground) !important;
    color: var(--DefaultText) !important;
    border-color: var(--InputBorder);
    border-radius: 5px !important;
}


/* Confirm New Password Label */

#lblconfirmPassword {
    font-weight: normal !important;
}

.iCheck-helper {
    background: transparent !important;
}

.icheckbox_minimal-blue,
.iradio_minimal-blue {
    -webkit-background-size: 200px 20px;
    background-size: 200px 20px;
}


/* Content Table */

.nuq-login-window {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: var(--DefaultText);
    width: 350px;
    font-weight: normal !important;
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
}


/* Middle Table Column (between label and Input Fields) */

.nuq-login-window .pr {
    width: 0px !important;
}


/* Company Logo  */

img[src="Images/nuq_LogoNew.png"] {
    padding: 0 0 20px 0;
}

.xxxx {
    background-color: #293846;
    background-color: #1637AD;
    background-color: #a7b1c2;
    background-color: #337ab7;
    background-color: #676a6c;
    background-color: #676a6c;
}


/* Login Button  */

#butLogin {
    font-size: 15px;
    padding: 3% 17% 10% 6% !important;
    /* padding: 4% 22% 13% 8% !important; */
    /* padding: 8px 3px 8px 3px !important; */
    border-radius: 8px;
    font-weight: normal !important;
    border: 1px solid var(--ButtonBorder) !important;
    color: var(--ButtonText) !important;
    cursor: pointer;
    text-decoration: none;
    background: var(--ButtonBackground) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
}


/* Login Button Hover */

#butLogin:hover {
    /* border: 1px solid #f57b00 !important;
    color: #f57b00 !important;
    background-color: #f57b001e !important; */
    border: 1px solid var(--ButtonBorderHover) !important;
    color: var(--ButtonTextHover) !important;
    background-color: var(--ButtonBackgroundHover) !important;
    transform: translateY(-1px);
}