﻿.password-group {
	position: relative;
}

.password-group .btn-reveal {
	position: absolute;
	top: 0;
	right: 0;
	padding: 1rem 1.25rem;
	border: none;
	border-radius: 0 calc(0.75em + 1rem + 1px) calc(0.75em + 1rem + 1px) 0;
	background: none;
	font-size: 1.25em;
	color: var(--bs-primary);
	line-height: 1.2;
}

	.password-group .btn-reveal:before {
		width: 1.25em;
		font-family: 'bootstrap-icons';
		text-align: center;
		display: inline-block;
	}

	.password-group [type=password] + .btn-reveal:before {
		content: '\F340';
	}

	.password-group [type=text] + .btn-reveal:before {
		content: '\F341';
	}

.text-red {
	--bs-text-opacity: 1;
	color: red !important;
}