form {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
}
input{
	width: 100%;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
	padding: 10px;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #f90661; /* Linha abaixo */
	color: white; /* Cor do texto */
	font-size: 14px;
	outline: none; /* Remove o contorno ao focar */
	margin-bottom: 20px; /* Espaço entre os campos */
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
	color: white; /* Cor do placeholder */
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
	border-bottom: 1px solid white; /* Cor ao focar */
}
input[type="submit"] {
	font-size: 17px;
	font-weight: 600;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #f90661; /* Cor da borda */
  position: relative;
  cursor: pointer;
  background-color: transparent; /* Fundo transparente */
}

/* Estilo quando o checkbox está marcado */
input[type="checkbox"]:checked {
  background-color: #f90661; /* Cor de fundo quando marcado */
}

/* Marca de verificação quando o checkbox está marcado */
input[type="checkbox"]:checked::after {
  content: '✔'; /* Sinal de check */
  color: white; /* Cor do check */
  font-size: 16px;
  position: absolute;
  top: -3px;
  left: 3px;
}