/* Autor: Emanuel
   Data : 22/06/2026
*/

.input-senha-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.input-senha-campo {
    padding-right: 3.25rem;
}

.input-senha-toggle {
    position: absolute;
    top: 50%;
    right: .55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--ks-muted);
    cursor: pointer;
    transform: translateY(-50%);
    line-height: 1;
    appearance: none;
    -webkit-appearance: none;
    z-index: 2;
    transition: background-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.input-senha-toggle:hover {
    background: rgba(255, 133, 0, .1);
    color: var(--ks-orange-dark);
}

.input-senha-toggle:focus {
    outline: 0;
    box-shadow: 0 0 0 .14rem rgba(255, 133, 0, .14);
}

.input-senha-icone,
.input-senha-icone::before,
.input-senha-icone::after {
    display: block;
    box-sizing: border-box;
}

.input-senha-icone {
    position: relative;
    width: 1.22rem;
    height: .78rem;
    border: 2px solid currentColor;
    border-radius: 999px 999px 999px 999px / 780px 780px 780px 780px;
}

.input-senha-icone::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: .34rem;
    height: .34rem;
    border-radius: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.input-senha-icone::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: none;
    width: 1.45rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%) rotate(-42deg);
}

.input-senha-allop.is-visible .input-senha-icone::after {
    display: block;
}
