﻿.form-style
{
    font: 95% Arial, Helvetica, sans-serif;
    margin: 10px auto;
    padding-top: 10px;
}

.form-style input[type="text"],
.form-style input[type="email"],
.form-style textarea
{
    width: 100%;
    margin-bottom: 4%;
    border: 1px solid #ccc;
    padding: 3%;
     
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    background: #fff;
    color: #555;
}

.form-style input[type="file"]
{
    width: 100%;
    margin-bottom: 4%;
    margin-top: 1%;
    border: 1px solid #ccc;
    padding: 2%; 
    
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    background: #fff;
    color: #555;
}

.form-style input[type="text"]:focus,
.form-style input[type="email"]:focus,
.form-style input[type="file"]:focus,
.form-style textarea:focus
{
    box-shadow: 0 0 5px #7F7F7F;
    border: 1px solid #7F7F7F;
}

.form-style input[type="submit"],
.form-style input[type="reset"],
.form-style button
{
    width: 100%;
    padding: 3%;
    background-image:url(images/bgbar.jpg);
}

.form-style input[type="submit"]:hover,
.form-style input[type="reset"]:hover,
.form-style button:hover
{
    background-image:url(images/bgbarfocus.jpg);
}
