input[type="text"],
input[type="email"],
input[type="password"] {
	border-radius: 12px;
	border: 1px solid #ddd;
	transition: box-shadow 0.3s ease;
	text-align: center;
	line-height: 2rem;
	width: 270px;
	margin-top: 10px;
	color: white;
	font-size: 1.1rem;
	background-color: rgba(149, 219, 198, 0.2);
}

input:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(142, 6, 233, 0.86);
}

input::placeholder {
	color: #999;
	font-size: 1rem;
	/* font-style: italic; */
}



@media (max-width: 480px) {

	input[type="text"],
	input[type="email"],
	input[type="password"] {
		width: 100%;

	}
}