@charset "UTF-8";
input,
textarea {
    color: #888;
    letter-spacing: 1px;
    border-radius: 0px !important;
    box-shadow: none !important;
}


input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
    font: 400 14px/16px "Open Sans", Helvetica, Arial, sans-serif;
    width: 100%;
    border: 1px solid #888;
    border-bottom: 1px solid #888;
    background: transparent;
    margin: 0 0 5px;
    padding: 10px;
}

input[type="text"],
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    -webkit-appearance: none !important;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="url"]:hover,
textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    /* border:1px solid #AAA; */
}

textarea {
    min-height: 20vh;
    max-width: 100%;
    resize: none;
}

input:focus,
textarea:focus {
    outline: 0;
}

::-webkit-input-placeholder {
    color: #666;
    letter-spacing: 2px;
}

:-moz-placeholder {
    color: #666;
    letter-spacing: 2px;
}

::-moz-placeholder {
    color: #666;
    letter-spacing: 2px;
}

:-ms-input-placeholder {
    color: #666;
    letter-spacing: 2px;
}

