﻿body {
}

.medium-label {
    display: inline-block;
    width: 100%;
    padding: 5px;
    padding-right: 10px;
    background-color: lightgray;
    color: black;
    text-align: right;
    font-weight: 700;
    box-sizing: border-box;
}

.lblForgotUID {
    color: red;
   font-size: 12px;
}


.pwd-strength {
    background-color: lightgray;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    max-width: 320px;
    margin-top: 5px;
    height: 20px;
}

.pwd-strength-meter {
    display: inline-block;
    height: 10px;
    position: absolute;
    border-radius: 5px;
    left: 50px;
}

    .pwd-strength-meter.red {
        background-color: red;
        width: 100px;
    }

    .pwd-strength-meter.yellow {
        background-color: yellow;
        width: 220px;
    }

    .pwd-strength-meter.green {
        background-color: green;
        width: 300px;
    }

.pwd-strength-text {
    z-index: 400;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    left: 120px;
    margin-top: -3px;
}

.help-btn {
    float: right;
    text-align: center;
    width: 76.81px;
    margin-top: 20px;
    margin-right: 15px;
}

.footable {
    border: 3px solid black;
}

.footable > thead > tr > th, .footable > thead > tr > td {
    background-color: black;
    border: 1px solid black;
}

.footable > thead > tr > th {
    position: sticky;
    top: 0; /* required for the stickiness */
    z-index: 1;
}