@charset "utf-8";
/* CSS Document */

form {
    width: 500px;
    margin: 0 auto;
    text-align: left;
    padding: 20px 0;
	float:left;
}

input,
textarea,
label {
    display: block;
    margin: 0 auto;
    width: 100%;
	padding: 5px 0px;
}

input,
textarea {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #828282;
}

input[type=submit] {
    background-color: #545557;
    padding: 15px 0;
    color: white;
    font-size: 18px;
    border-bottom: none;
    margin-top: 30px;
    cursor: pointer;
    transition: all .3s ease;
}

input[type=submit]:hover {
    background: #bbb;
    color: #1b1c1e;
}

input, textarea {
    color: #191919;
    background: #dbd9d9;
    font-size: 18px;
    padding: 10px;
}

input:focus,
textarea:focus {
    outline: 1px solid #828282;
}
