body{
	background: linear-gradient(180deg, #00597c 0%, #333 100%);
/*	display: flex;
	justify-content: center;
	align-items: center;
*/	
}

input:invalid{
	background-color: red;
}
.form-container{
/*	background-color: rgba(255, 255, 255, 0.2); */
	background-color: #f6e1f2;
	backdrop-filter:  blur(15px);
	border-radius: 15px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	width: 100%;
	max-width: 420px;
	padding: 10px 15px;
}

.form-control{
	background-color: transparent !important;
	border: 2px solid #56ccf2;
/*	color: #ffffff !important; */
	transition: border-color 0.3s ease;
}

.form-control:focus{
	border-color: #42a5f5;
	outline: none;
	box-shadow: none;
}

::placeholder{
	color: #ca2f3d !important;
}

.icon {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	color: #ca2f3d;
/*	background: linear-gradient(135deg, #42a5f5, #56ccf2);
	padding: 12px;
	border-radius: 50%;
*/	
}

.form-container a{
	text-decoration: none;
}

.btn-primary {
	background-color: #56ccf2;
	border: none;
	transition: background-color 0.3s ease;
	color: #ffffff;
	font-size: 120%;
}

.btn-primary:hover {
	background-color: #ca2f3d;
}


