/* Styles for Reset password pages */

.reset-description {
    margin-bottom: 25px;
}

.reset-need-help {
    clear: both;
    padding-top: 40px;
    text-align: center;
}

.reset-password-success {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 0px 30px 30px 30px;
    margin-left: -30px;
    margin-right: -30px;
}

.reset-password-success .success-icon svg {
    width: 60px;
    height: 60px;
    vertical-align: top;
    fill:#238844;
}

.reset-password-success > div:nth-child(2) {
    margin: 23px auto 0;
    max-width: 220px;
}

.reset-password-success.reset-password-final > div:nth-child(2) {
    max-width: none;
}

.reset-password-success .go-to-login {
    margin-top: 21px;
}

.generate-password {
    margin-top: 21px;
}

.password-strength {
    margin-top: 6px;
    font-size: 12px;
}

.password-strength ul {
    list-style: none;
    padding: 0;
    margin: 0 -1px;
    display: flex;
}

.password-strength li {
    width: calc(20% - 2px);
    flex: 0 0 auto;
    margin: 0 1px;
    height: 4px;
    background-color: #e5e5e5;
    border-radius: 4px !important;
    transition: background-color .2s ease-in-out;
}

.password-strength li.is-colored {
    background-color: #2FAEE3;
}

.password-strength > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.password-strength-label {
    color: #2FAEE3;
    display: block;
    font-weight: bold;
}

.password-strength-info {
    display: flex;
    align-items: center;
}

.password-strength-info span {
    display: block;
}

.password-strength-info span:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    border-radius: 50% !important;
    margin-right: 5px;
    cursor: pointer;
    transition: all .15s ease-in-out;
}

.password-strength-info span:first-child svg {
    fill: #000;
    transition: all .15s ease-in-out;
    width: 100%;
    height: auto;
    vertical-align: top;
}

.password-strength-info span:first-child svg:hover,
.password-strength-info span:first-child svg:focus {
    fill: #2FAEE3;
}

.has-password-success .form-control {
    border-color: #2FAEE3;
    -webkit-box-shadow: none;
    box-shadow: none;
}