html,
body {
	height: 100%;
}

.form-signin {
	max-width: 330px;
	padding: 1rem;
}

.form-signin .form-floating:focus-within {
	z-index: 2;
}

.form-signin input[type="text"],
.form-signin input[type="password"] {
	margin-bottom: 10px;
	border-radius: 0;
}

.form-signin input[type="text"] {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
	border-top-right-radius: 0;
	border-top-left-radius: 0;
}

.password-container {
	position: relative;
}

.password-container input {
	width: 100%;
	padding: 10px;
	margin: 10px 0;
	border-radius: 4px;
	padding-right: 40px;
}

.toggle-password {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	background: none;
	border: none;
	outline: none;
	opacity: 0.6;
	transition: opacity 0.3s;
	width: 20px; /* Fixed width */
	height: 20px; /* Fixed height */
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.toggle-password:hover {
	opacity: 1;
}

.toggle-password svg {
	position: absolute;
	width: 20px;
	height: 20px;
	top: 0;
	left: 0;
}

#eye-icon,
#eye-slash-icon {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 0;
	left: 0;
}

.toggle-password svg {
	margin: 0;
	padding: 0;
	display: block;
}
