﻿.force-password-input {
    width: 100%;
    height: 52px;
    border: 1px solid #dce1ea;
    border-radius: 14px;
    padding: 0 18px;
    margin-bottom: 14px;
    font-size: 14px;
    transition: .2s;
}

    .force-password-input:focus {
        outline: none;
        border-color: #2f6fed;
        box-shadow: 0 0 0 4px rgba(47,111,237,.12);
    }

.password-policy-info {
    text-align: left;
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 13px;
    color: #555;
    margin-top: 8px;
}

    .password-policy-info ul {
        padding-left: 18px;
        margin: 10px 0 0;
    }

.password-input-wrapper {
    position: relative;
    margin-bottom: 14px;
}

    .password-input-wrapper .force-password-input {
        padding-right: 50px;
    }

.toggle-password-btn {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #888;
    cursor: pointer;
    font-size: 16px;
}

.password-strength-wrapper {
    margin-top: 5px;
    margin-bottom: 18px;
}

.password-strength-label {
    font-size: 13px;
    margin-bottom: 8px;
    color: #666;
}

.password-strength-bar {
    width: 100%;
    height: 8px;
    border-radius: 20px;
    background: #edf1f5;
    overflow: hidden;
}

#password-strength-fill {
    height: 100%;
    width: 0%;
    border-radius: 20px;
    transition: .25s;
}

.password-policy-checklist {
    margin-top: 15px;
    text-align: left;
}

.policy-item {
    font-size: 13px;
    margin-bottom: 8px;
    color: #999;
    transition: .2s;
}

    .policy-item i {
        width: 18px;
    }

    .policy-item.valid {
        color: #16a34a;
    }

        .policy-item.valid i {
            color: #16a34a;
        }
