/* 인풋 그룹 및 입력 폼 포커스 시 테두리 반응 효과 */
.input-group:focus-within {
    border-color: #E5BA73 !important; /* 바림온 테마 골드 브랜딩 */
    box-shadow: 0 0 0 0.2rem rgba(229, 186, 115, 0.15) !important;
}

/* 체크박스 커스텀 핏 */
.custom-login-check .form-check-input:checked {
    background-color: #111315;
    border-color: #111315;
}

/* 부드러운 호버 전환용 믹스인 효과 */
.transition-base {
    transition: filter 0.2s ease-in-out, transform 0.1s ease;
}
.transition-base:hover {
    filter: brightness(0.95);
}
.transition-base:active {
    transform: scale(0.98);
}
