/**
 * Copyright (c) 2025 MSIH LLC. All rights reserved.
 */
:root {
    --encrypted-accent: #10b981;
    --encrypted-accent-soft: #d1fae5;
    --encrypted-accent-focus: #059669;
}

.encrypted-field-wrapper {
    border-left: 4px solid var(--encrypted-accent);
    padding-left: 0.5rem;
}

.encrypted-field-wrapper .input-group-text.encrypted-field-lock {
    background-color: var(--encrypted-accent-soft);
    border-color: var(--encrypted-accent);
    color: var(--encrypted-accent-focus);
}

.encrypted-field-wrapper .encrypted-input {
    border-color: var(--encrypted-accent);
    border-width: 2px;
}

.encrypted-field-wrapper .encrypted-input:focus {
    border-color: var(--encrypted-accent-focus);
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

.encrypted-field-wrapper .encrypted-input:disabled {
    background-color: #f8f9fa;
}

.encrypted-field-status {
    color: var(--encrypted-accent-focus) !important;
}
