.container {
	background-color: #ecf7fc;
	padding: 20px;
	border: 3px solid #3b3b3b;
	font-family: Arial, sans-serif;
	font-size: 11pt;
	font-weight: bold;
	color: #3b3b3b;
	max-width: 300px;
	}

fieldset {
	border: none;
	padding: 0;
	margin: 0;
}



input[type="text"], 
input[type="tel"], 
input[type="email"], 
input[type="password"], 
input[type="date"], 
input[type="url"]{
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 10px;
	margin-bottom: 20px;
	border: 2px solid #CFDDE9;
	box-sizing: border-box;
	font-size: 11pt;
}


button {
  	display: block;
 	margin: auto;
	font-family: Arial;
  	font-weight: bold;
  	font-size: 11pt;
  	color: #3b3b3b;
	border-radius: 25px;
	border: 5px solid #cfdde9;
	width: 200px;
	cursor: pointer;
  
}
  

  
button:hover {
	background-color: #608ee4;
	color: white;
  }
