* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    /*font-family: "Georgia", sans-serif;*/
    /*font-size: 17px;*/
    /*color: #333;*/
}
h1 {
    font-family: "Georgia", sans-serif;
    text-align: center;
}

form {
    color: #333;
    width: 50%;
    min-width: 400px;
    margin: auto;
    border: 1px solid black;
    border-radius: 8px;
    padding: 2em;
    background: #5a5a5b;
    line-height: 1.5em;
}
form h2 {
    color: gold;
    background: #1693ff;
    text-align: center;
    padding: 0.5em 0.25em;
    border-radius: 8px;
    text-transform: uppercase;
    font-family: Georgia, arial, sans-serif;
    font-size: 1.8em;
    line-height: 1.1;
}
form p {
    font-weight: bold;
}
fieldset {
    background: cadetblue;
    padding: 1em 2em 2em;
    margin: 2em auto;
    border-radius: 8px;
    border: darkkhaki 1px solid;
    box-shadow: 0 2px 10px 5px rgba(0, 0, 0, 0.15);
}
legend {
    background: coral;
    padding: 0.5em;
    border-radius: 5px;
    box-shadow: 0 2px 10px 5px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    width: 60%;
    min-width: 250px;
    text-align: center;
    border: black 1px solid;
}
label {
    color: #003097;
    font-weight: normal;
}
input,
textarea {
    display: block;
    padding: 0.5em;
    font-family: Georgia, arial, sans-serif;
    font-size: 1em;
    color: dimgrey;
    width: 100%;
    border-radius: 4px;
    border: darkgray;
}
input[type="text"] {
    /*
    background: #fff url(name.png) no-repeat 10px center;
    background-size: auto 75%;
    */
    padding: 1em 1em 1em 60px;
}
input[type="email"] {
    /*
    background: #fff url(email.png) no-repeat 10px center;
    background-size: auto 75%;
    */
    padding: 1em 1em 1em 60px;
}
input[type="tel"] {
    /*
    background: #fff url(phone.png) no-repeat 10px center;
    background-size: auto 75%;
    */
    padding: 1em 1em 1em 60px;
}
input[type="password"] {
    /*
    background: #fff url(password.png) no-repeat 10px center;
    background-size: auto 75%;
    */
    padding: 1em 1em 1em 60px;
}
input[type="submit"] {
    background: #f75129 url(submit2.png) no-repeat 10px center;
    background-size: auto 75%;
    padding: 1em 1em 1em 60px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid black;
    width: 150px;
    display: block;
    margin: auto;
    border-radius: 6px;
}
input[type="submit"]:hover {
    background: #f75129 url(submit2.png) no-repeat 10px center;
    background-size: auto 75%;
    color: #000;
}
input[type="radio"] {
    display: inline;
    width: auto;
}
input[type="checkbox"] {
    display: inline;
    width: auto;
}
.input-wrap {
    position: relative;
    display: block;
}
.input-wrap img {
    position: absolute;
    top: 8px;
    left: 10px;
    height: 40px;
    width: auto;
    z-index: 100;
}
/*SPECIAL CLASSES*/
.hide {
    text-indent: -99999px;
    display: inline-block;
}
.decorative {
    background: url(divider.png) no-repeat center 68%;
    background-size: 100%;
}
