@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*
{
   margin: 0;
   padding: 0;
   font-family: 'Poppins', sans-serif; 
   position: relative;
}
body
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #373737;
}
h3
{
    position: relative;
    font-size: 20px;
    color: #f9f9f9;
    letter-spacing: 500;
    margin-bottom: 5px;
}
#form
{
    position: relative;
}
#form #email, #tel, #name
{
    width: 300px;
    background: #292929;
    outline: none;
    border: none;
    padding: 10px;
    border-radius: 6px;
    color: #fff;
    font-style: 18px;
}
span {
    display: block;
  }
#submit
{
    position: relative;
    left:30%;
    top:15px;
    background: #292929;
    border: none;
    color: white;
    padding: 10px 22px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 6px;
}
#form #inputBox
{
    position: relative;
}
/* #text
{
    display: block;
    color: #000;
    font-weight: 300;
    font-style: italic;
    padding: 5px;
} */
/* #text1
{
    display: block;
    color: #000;
    font-weight: 300;
    font-style: italic;
    padding: 5px;
} */
/* #form.invalid .inputBox:before
{
    content: '';
    position: absolute;
    right: 25px;
    top: 9px;
    width: 24px;
    height: 24px;
    background: url(invalid.png);
    background-size: cover;
    z-index: 1000;
}
#form.valid .inputBox:before
{
    content: '';
    position: absolute;
    right: 25px;
    top: 9px;
    width: 24px;
    height: 24px;
    background: url(valid.png);
    background-size: cover;
    z-index: 1000;
} */