form{
    width: 100%;
	display: flex;
	flex-direction: column;
    background-color: rgba(220,220,0,0.2);
    padding : 5px 0px;
	align-items: center;
	justify-content: center;
}
.c100{
    width: 50%;
	display: flex;
	flex-direction: column;
    margin-top: 50px;
	align-items: center;
	justify-content: center;
}

.c200{
    width: 50%;
	display: flex;
	flex-direction: column;
    margin-top: 50px;
	align-items: center;
	justify-content: center;
}

label{
    display: inline-block;
    min-width: 100%;	
	font-size: calc(0.7rem + 0.4vw);
}

input[type=text] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 2px solid #46c8ca;
  border-radius: 8px;
}

input[type=email] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 2px solid #46c8ca;
  border-radius: 8px;
}

input[type=tel] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 2px solid #46c8ca;
  border-radius: 8px;
}



input[type="submit"]{
    color: black;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    border: 2px solid #46c8ca;
}
input[type="submit"]:hover{
    background-color: #46c8ca;
    color: #fff;
    cursor: pointer;
    box-shadow: 0px 0px 5px 0px #777;
}