*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: black;
}
.contact h3{
    font-size: 40px;
    color: white;
    text-align: center;
    margin-bottom: 10px;
}
.contact h3 span{
    color: #0ef;
}
.contact form{
    width: 600px;
    text-align: center;
}
 form .input-box{
    display: flex;
    justify-content: space-between;
}
.input-box .input-field {
    width: 48.5%;
}
.field .item{
    width: 100%;
    padding:18px;
    background: transparent;
    border: 2px solid #0ef;
    outline: none;
    border-radius: 6px;
    font-size: 16px;
    color: white;
    margin: 12px 0;
}
.field.error .item{
    border-color: red;
}
.field .item::placeholder {
    color: rgba(255,255,255,.3);
} 
form .textarea-field .item{
    resize: none;
}
form button{
    padding: 12px 32px;
    background: #0ef;
    border: none;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 10px #0ef;
    font-size: 16px;
    color: black;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.5s;
}
form button:hover {
    box-shadow: none;
}
.field .error-txt{
    font-size: 14.5px;
    color: red;
    text-align: left;
    margin: -5px 0 10px;
    display: none;
}
form .textarea-field .error-txt{
    margin-top: -10px;
}
.field.error .error-txt{
    display: block;
} 
@media screen and (max-width:600px) {
   .input-box{
    display: flex;
    flex-direction: column;
   }
   .input-field{
    margin-left: 11.5rem;
   }
   .input-box .input-field{
    width: 38%;
   }
   .textarea-field{
    padding-left: 9rem;
    padding-right: 9rem;
   }
}