/* Password field styling */
.scp-password-container {
    max-width: 560px;
    width: 100%;
}
.scp-password-field-wrapper {
    display: flex;
    align-items: stretch;
    gap: 6px;
    margin-bottom: 10px;
    max-width: 420px;
}
.scp-password-input {
    flex: 1;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.scp-password-icon {
    background: #f6f7f7;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    padding: 0 8px;
    cursor: pointer;
    color: #2271b1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    flex-shrink: 0;
}
.scp-password-icon:hover {
    background: #fff;
    border-color: #2271b1;
    color: #135e96;
}
.scp-password-icon:active {
    transform: scale(0.96);
}
.scp-generate-btn {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 14px;
    font-size: 13px;
    line-height: 30px;
    background: #f6f7f7;
    border-color: #2271b1;
    color: #2271b1;
    transition: all 0.2s ease;
}
.scp-generate-btn:hover {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
}
.scp-generate-btn:active {
    transform: translateY(1px);
}
.scp-generate-btn svg {
    transition: transform 0.3s ease;
}
.scp-generate-btn:hover svg {
    transform: rotate(180deg);
}
.scp-password-hint {
    margin-top: 8px;
    max-width: 560px;
}
.scp-password-strength-meter {
    margin-top: 8px;
    max-width: 420px;
    width: 100%;
    box-sizing: border-box;
}
.scp-password-strength-track {
    height: 4px;
    background: #f0f0f1;
    border-radius: 2px;
    overflow: hidden;
    width: 100%;
}
.scp-password-strength-fill-bar {
    height: 100%;
    width: 0%;
    transition: all 0.3s;
    background: #d63638;
}
.scp-password-strength-label-text {
    margin: 4px 0 0;
    font-size: 12px;
    color: #646970;
}
