body {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background-color: #f8f9fa;
}
.login-container {
	width: 100%;
	max-width: 400px;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	text-align: center;
}
.logo {
	width: 200px;
	margin-bottom: 20px;
}
.password-container {
	position: relative;
}
.toggle-password,
.toggle-confirm-password{
	position: absolute;
	top: 53%;
	right: 10px;
	transform: translateY(-50%);
	cursor: pointer;
	color: #6c757d;
}
 .primarybgred{
	background-color:#A53239;
	color:white;
}
.primarybgred:hover{
	background-color:#ad4c51;
	color:white;
}
#username{
	text-transform: uppercase;
}