.alert-error {
            background: #fee2e2;
            color: #991b1b;
            padding: 12px;
            border-radius: 10px;
            margin-bottom: 12px;
            font-weight: 700;
            text-align: center;
        }

.password-wrap {
    position: relative;
    width: 100%;
}

    .password-wrap input {
        width: 100%;
        min-height: 54px;
        padding: 14px 54px 14px 16px;
        border: 1px solid #d9dde3;
        border-radius: 14px;
        background: #ffffff;
        font-size: 16px;
        color: #222222;
        box-sizing: border-box;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

        .password-wrap input::placeholder {
            color: #8b8b8b;
        }

        .password-wrap input:focus {
            border-color: #8f2438;
            outline: none;
            box-shadow: 0 0 0 4px rgba(143, 36, 56, 0.12);
        }

.btn-toggle-pass {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #8b8b8b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}

    .btn-toggle-pass:hover {
        color: #8f2438;
        background-color: rgba(143, 36, 56, 0.08);
    }

    .btn-toggle-pass:focus-visible {
        outline: 2px solid #8f2438;
        outline-offset: 2px;
    }

    .btn-toggle-pass svg {
        width: 21px;
        height: 21px;
        pointer-events: none;
    }
