
/* ------------------ PIN code ------------------ */

.pin-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pin-label {
    font-size: 0.825em;
    color: var(--theme-color);
}

.pin-row {
    justify-content: center;
    display: flex;
}

.pin-digit {
    -webkit-transition: none;
    transition: none;
    width: 32px;
    height: 32px;
    text-align: center;
    margin: .5rem;
    border-radius: .25rem;
    font-size: 1.5rem;
    background-color: rgb(232, 240, 254);
    border-color: #F3F6F9;
    color: #3F4254;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.pin-digit-mask {
    font-family: 'text-security-disc'; /* fallback if needed */
    -webkit-text-security: disc; /* Chrome/Safari */
    text-security: disc; /* Firefox (experimental) */
}

.pin-digit:active,
.pin-digit.active,
.pin-digit:focus,
.pin-digit.focus {
    background-color: rgb(209, 221, 245);
    border-color: #EBEDF3;
    color: #3F4254;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.pin-reveal {
    line-height: 80px;
    height: 80px;
    font-size: 24px;
    padding-top: 6px;
    margin-left: 10px;
    cursor: pointer;
}