@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*font-family: 'Poppins',sans-serif;*/
}
/*html,body{
  height: 100vh;
  width: 100%;
  background: #6665ee;
}*/

.input-box{
  height: 50px;
  width: auto;
  margin: 0px 10px 10px 0px;
  padding-left: 10px;
  padding-right: 10px;
}
.input-box input{
  height: 100%;
  width: 100%;
  padding-left: 5px;
  outline: none;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.4s ease;

}

.input-box input:valid {
  background-color: #fff;
}

.input-box input:invalid {
  background-color: lightpink;
}

.input-box input[type="text"]{
  border: 2px solid #ccc;
}
.input-box input[type="email"]{
  border: 2px solid #ccc;
}

/*.input-box input[type="text"]:focus,
input[type="text"]:valid{
  border-color: #6665ee;
}

input[type="submit"]{
  border: none;
  cursor: pointer;
  background: #6665ee;
  color: #fff;
  letter-spacing: 1px;
}
input[type="submit"]:hover{
  background: #1414b8;
}
.wrapper .footer{
  font-size: 16px;
  margin-top: 12px;
}
*/