﻿.masked-input {
    font-family: 'Segoe UI', Arial, sans-serif;
    -webkit-text-security: disc;
    -moz-text-security: disc;
    text-security: disc;
}

/* 新しいパスワードトグルボタンのスタイル */
.password-toggle-button {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #adb5bd; /* アイコンの色を薄めに */
    padding: 0 !important;
    min-width: unset !important;
    width: 30px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 20px !important; /* 右端からの距離を調整 */
    transform: translateY(-50%);
}

/* アイコン自体のスタイル調整 - 詳細度を上げてRadzenのスタイルを上書き */
.rz-button.rz-button-sm.password-toggle-button .rzi {
    font-size: 1.8rem !important;
    height: 1.8rem !important;
    line-height: 1 !important;
    width: 1.8rem !important;
}

.password-toggle-button:hover {
    background-color: transparent !important;
    color: #6c757d !important;
}

.password-toggle-button:active {
    background-color: transparent !important;
    box-shadow: none !important;
    color: #495057 !important;
}

/* Edgeブラウザの標準のパスワード表示切り替えアイコンを非表示にします */
input[type="password"]::-ms-reveal,
input[type="password"]::-webkit-reveal {
    display: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}