#contactform > input,
#contactform > textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    color: white;
    border: 0;
    border-bottom: 1px solid white;

    background-color: transparent;
}

#contactform > input {
    padding: 20px;
}

#contactform > textarea {
    padding: 20px;
}

#contactform > input[type="submit"]{
    padding-bottom: 20px;
    cursor: pointer;
}

#contactform > input:hover,
#contactform > textarea:hover {
    background-color: rgba(255,255,255,.3);
    transition: .5;
}

#contactform > input:hover {
    padding: 20px;
    transition: all ease-in-out .5;
}