/* 公共图标样式文件 */

/* 输入框图标通用样式 */
.input-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.input-icon img {
    width: 18px;
    height: 18px;
    opacity: 0.6;
    filter: grayscale(100%) brightness(0.6);
}

/* 密码切换图标样式 */
.password-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.password-toggle img {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    filter: grayscale(100%) brightness(0.6);
}

