﻿/* Error Message styles */

input.error-message, select.error-message, textarea.error-message {
    background: none;
    margin: 0;
    font-weight: normal;
    background-color: #FEE;
}

select.error-message {
    padding: 6px;
}

.error-message {
    margin-left: 10px;
    padding-left: 20px;
    line-height: 20px;
    color: #F00;
    font-size: 9pt;
    font-weight: bold;
    background: url('../../images/icons/error.png') no-repeat center left;
}

.messageContainer p, .messageContainer > div /* UW-10-0358 */ {
    color: #000;
    padding: 5px 5px 5px 35px;
    line-height: 24px;
    margin: 10px auto;
    border: #FC0 1px solid;
    background: url('../../images/icons/message.png') 5px 5px no-repeat #FF9;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.connectionmsg {
    display: none;
    color: #000;
    padding: 25px 5px;
    text-align: center;
    position: fixed;
    width: 94%;
    top: 0;
    left: 3%;
    z-index: 500;
    border-bottom: #000 3px solid;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    box-shadow: 0 0 5px 3px #CCC;
    background-color: #FC6;
}

.errorContainer p, .errorContainer > div /* UW-10-0358 */ {
    color: #000;
    padding: 5px 5px 5px 35px;
    line-height: 24px;
    margin: 10px auto;
    border: #C00 1px solid;
    background: url('../../images/icons/error.png') 5px 10px no-repeat #F99;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

/* UW-10-0358 */
li.passwordRulePassed {
    background: url('../../images/icons/checkmark.png') left center no-repeat;
    padding-left: 20px;
}

li.passwordRuleFailed {
    background: url('../../images/icons/unchecked.png') left center no-repeat;
    padding-left: 20px;
}

.waitingListWarning label {
    font-style: italic;
    color: #F00;
}


/* -----------------------------------------
   Password Strength Meter
----------------------------------------- */

.passwordmeter {
    margin-bottom: 10px;
    display: block;
}

.passworddescription {
    font-size: 0.8em;
    color: #666;
}

.passwordstrength {
    height: 0.8em;
    display: block;
}

.strength0 {
    width: 10em;
    background: #cccccc;
}

.strength1 {
    width: 2em;
    background: #ff0000;
}

.strength2 {
    width: 4em;
    background: #ff5f5f;
}

.strength3 {
    width: 6em;
    background: #56e500;
}

.strength4 {
    background: #4dcd00;
    width: 8em;
}

.strength5 {
    background: #399800;
    width: 10em;
}