.cardForm {
    background-color: #fff;
    border-radius: .25rem;
    box-shadow: 0 1px 0 rgb(0 0 0 / 25%);
    padding: 2rem 2rem 1rem;
    margin: 0 auto 2rem;
    position: relative;
    border: 1px solid #ddd;
}

.resetPwdTitle {
    font-weight: bold;
    font-size: 1.5rem;
}

.inputPart {
    font-weight: 700;
    margin: 0 0 .25rem;
    display: block;
    font-size: 1rem;
    line-height: 1.5rem;
}

.inputPart label {
    font-size: 1rem;
}

.btn {
    background: #F27079;
    color: #fff;
    transition: all 75ms ease-in-out;
    line-height: 2rem;
    font-weight: 900;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    cursor: pointer;
    text-shadow: none;
    border: none;
    border-radius: .25rem;
    box-shadow: none;
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    text-align: center;
    white-space: nowrap;
    margin: 0;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    padding: 0 0.8rem;
    width: 100%;
}

.btn:hover {
    background: #ee5668;
}

.inputPart input {
    font-size: 1rem;
    border: 1px solid #999;
    border-radius: 5px;
    outline: none;
    box-sizing: border-box;
    width: 100%;
    height: 2rem;
    color: #707070;
}

#resetPwdTable {
    border-collapse: collapse;
    margin: 50px auto 250px auto;
}

#resetPwdTable td{
    padding-top:20px;
    padding-left:10px;
}

.resetPwdErrorMsg {
    color: red;
}

#passwordWrapper {
    position: relative;
    width: 100%;
    margin: 5px 0 1rem;
    display: none;
}

.password-strength-bar {
    height: 4px;
    background-color: rgb(232, 232, 232);
    width: 100%;
    position: absolute;
    left: 0;
}

#password-strength-meter {
    height: 4px;
    background-color: rgb(200, 24, 24);
    width: 0;
    position: absolute;
    left: 0;
}

.password-strength-divider {
    height: 4px;
    width: 2px;
    background-color: rgb(255, 255, 255);
    position: absolute;
}

.divider-25 { left: 25%; }
.divider-50 { left: 50%; }
.divider-75 { left: 75%; }

.password-strength-blank-space {
    float: right;
    margin-top: 6px;
    line-height: 16px;
    font-size: 11px;
}

.login-link {
    color: #2456ff;
}