10 CSS HTML Form Designs

Let’s face it – HTML forms are an integral part of the web. They’re a powerful and essential tool for interacting with users. But without proper styling and layout, forms can look pretty awful. So how do you make them appealing and user-friendly? That’s where CSS comes in.

In this article, I’ve compiled 10 form styles that you can directly copy and use in your web projects.

These forms look great on all modern browsers, and honestly, you shouldn’t stress too much about old ones. But for those of you still concerned about legacy browser support, a few of these examples might need minor tweaks. Some forms don’t use traditional <label> elements and rely on the HTML5 placeholder attribute instead – which older browsers don’t fully support. If that’s a concern, you can always use a polyfill like Placeholders.js as a fallback.”

Form Style 1

This is the clean CSS contact form layout. It has no background and comes with bold labels, light blue button and soft box-shadow on focus for input fields.

  •  
12345678910111213141516171819202122232425

&lt;form&gt;
    &lt;ul class=&quot;form-style-1&quot;&gt;
        &lt;li&gt;&lt;label&gt;Full Name &lt;span class=&quot;required&quot;&gt;*&lt;/span&gt;&lt;/label&gt;&lt;input type=&quot;text&quot; name=&quot;field1&quot; class=&quot;field-divided&quot; placeholder=&quot;First&quot; /&gt;&amp;nbsp;&lt;input type=&quot;text&quot; name=&quot;field2&quot; class=&quot;field-divided&quot; placeholder=&quot;Last&quot; /&gt;&lt;/li&gt;
        &lt;li&gt;
            &lt;label&gt;Email &lt;span class=&quot;required&quot;&gt;*&lt;/span&gt;&lt;/label&gt;
            &lt;input type=&quot;email&quot; name=&quot;field3&quot; class=&quot;field-long&quot; /&gt;
        &lt;/li&gt;
        &lt;li&gt;
            &lt;label&gt;Subject&lt;/label&gt;
            &lt;select name=&quot;field4&quot; class=&quot;field-select&quot;&gt;
            &lt;option value=&quot;Advertise&quot;&gt;Advertise&lt;/option&gt;
            &lt;option value=&quot;Partnership&quot;&gt;Partnership&lt;/option&gt;
            &lt;option value=&quot;General Question&quot;&gt;General&lt;/option&gt;
            &lt;/select&gt;
        &lt;/li&gt;
        &lt;li&gt;
            &lt;label&gt;Your Message &lt;span class=&quot;required&quot;&gt;*&lt;/span&gt;&lt;/label&gt;
            &lt;textarea name=&quot;field5&quot; id=&quot;field5&quot; class=&quot;field-long field-textarea&quot;&gt;&lt;/textarea&gt;
        &lt;/li&gt;
        &lt;li&gt;
            &lt;input type=&quot;submit&quot; value=&quot;Submit&quot; /&gt;
        &lt;/li&gt;
    &lt;/ul&gt;
&lt;/form&gt;
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485

&lt;style type=&quot;text/css&quot;&gt;
    .form-style-1 {
        margin:10px auto;
        max-width: 400px;
        padding: 20px 12px 10px 20px;
        font: 13px &quot;Lucida Sans Unicode&quot;, &quot;Lucida Grande&quot;, sans-serif;
    }
    .form-style-1 li {
        padding: 0;
        display: block;
        list-style: none;
        margin: 10px 0 0 0;
    }
    .form-style-1 label{
        margin:0 0 3px 0;
        padding:0px;
        display:block;
        font-weight: bold;
    }
    .form-style-1 input[type=text],
    .form-style-1 input[type=date],
    .form-style-1 input[type=datetime],
    .form-style-1 input[type=number],
    .form-style-1 input[type=search],
    .form-style-1 input[type=time],
    .form-style-1 input[type=url],
    .form-style-1 input[type=email],
    textarea,
    select{
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        border:1px solid #BEBEBE;
        padding: 7px;
        margin:0px;
        -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;
    }
    .form-style-1 input[type=text]:focus,
    .form-style-1 input[type=date]:focus,
    .form-style-1 input[type=datetime]:focus,
    .form-style-1 input[type=number]:focus,
    .form-style-1 input[type=search]:focus,
    .form-style-1 input[type=time]:focus,
    .form-style-1 input[type=url]:focus,
    .form-style-1 input[type=email]:focus,
    .form-style-1 textarea:focus,
    .form-style-1 select:focus{
        -moz-box-shadow: 0 0 8px #88D5E9;
        -webkit-box-shadow: 0 0 8px #88D5E9;
        box-shadow: 0 0 8px #88D5E9;
        border: 1px solid #88D5E9;
    }
    .form-style-1 .field-divided{
        width: 49%;
    }
    .form-style-1 .field-long{
        width: 100%;
    }
    .form-style-1 .field-select{
        width: 100%;
    }
    .form-style-1 .field-textarea{
        height: 100px;
    }
    .form-style-1 input[type=submit], .form-style-1 input[type=button]{
        background: #4B99AD;
        padding: 8px 15px 8px 15px;
        border: none;
        color: #fff;
    }
    .form-style-1 input[type=submit]:hover, .form-style-1 input[type=button]:hover{
        background: #4691A4;
        box-shadow:none;
        -moz-box-shadow:none;
        -webkit-box-shadow:none;
    }
    .form-style-1 .required{
        color:red;
    }
&lt;/style&gt;

Form Style 2

Another clean Form style fits perfectly into any clean webpage layout. The form has soft box-shadow effects around the fields, and nice orange button.

Provide your information

HTML

&lt;div class=&quot;form-style-2&quot;&gt;
&lt;div class=&quot;form-style-2-heading&quot;&gt;Provide your information&lt;/div&gt;
&lt;form action=&quot;&quot; method=&quot;post&quot;&gt;
    &lt;label for=&quot;field1&quot;&gt;&lt;span&gt;Name &lt;span class=&quot;required&quot;&gt;*&lt;/span&gt;&lt;/span&gt;&lt;input type=&quot;text&quot; class=&quot;input-field&quot; name=&quot;field1&quot; value=&quot;&quot; /&gt;&lt;/label&gt;
    &lt;label for=&quot;field2&quot;&gt;&lt;span&gt;Email &lt;span class=&quot;required&quot;&gt;*&lt;/span&gt;&lt;/span&gt;&lt;input type=&quot;text&quot; class=&quot;input-field&quot; name=&quot;field2&quot; value=&quot;&quot; /&gt;&lt;/label&gt;
    &lt;label&gt;&lt;span&gt;Telephone&lt;/span&gt;&lt;input type=&quot;text&quot; class=&quot;tel-number-field&quot; name=&quot;tel_no_1&quot; value=&quot;&quot; maxlength=&quot;4&quot; /&gt;-&lt;input type=&quot;text&quot; class=&quot;tel-number-field&quot; name=&quot;tel_no_2&quot; value=&quot;&quot; maxlength=&quot;4&quot;  /&gt;-&lt;input type=&quot;text&quot; class=&quot;tel-number-field&quot; name=&quot;tel_no_3&quot; value=&quot;&quot; maxlength=&quot;10&quot;  /&gt;&lt;/label&gt;
    &lt;label for=&quot;field4&quot;&gt;&lt;span&gt;Regarding&lt;/span&gt;&lt;select name=&quot;field4&quot; class=&quot;select-field&quot;&gt;
        &lt;option value=&quot;General Question&quot;&gt;General&lt;/option&gt;
        &lt;option value=&quot;Advertise&quot;&gt;Advertisement&lt;/option&gt;
        &lt;option value=&quot;Partnership&quot;&gt;Partnership&lt;/option&gt;
    &lt;/select&gt;&lt;/label&gt;
    &lt;label for=&quot;field5&quot;&gt;&lt;span&gt;Message &lt;span class=&quot;required&quot;&gt;*&lt;/span&gt;&lt;/span&gt;&lt;textarea name=&quot;field5&quot; class=&quot;textarea-field&quot;&gt;&lt;/textarea&gt;&lt;/label&gt;
    &lt;label&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;input type=&quot;submit&quot; value=&quot;Submit&quot; /&gt;&lt;/label&gt;
&lt;/form&gt;
&lt;/div&gt;
CSS

&lt;style type=&quot;text/css&quot;&gt;
    .form-style-2{
        max-width: 500px;
        padding: 20px 12px 10px 20px;
        font: 13px Arial, Helvetica, sans-serif;
    }
    .form-style-2-heading{
        font-weight: bold;
        font-style: italic;
        border-bottom: 2px solid #ddd;
        margin-bottom: 20px;
        font-size: 15px;
        padding-bottom: 3px;
    }
    .form-style-2 label{
        display: block;
        margin: 0px 0px 15px 0px;
    }
    .form-style-2 label &gt; span{
        width: 100px;
        font-weight: bold;
        float: left;
        padding-top: 8px;
        padding-right: 5px;
    }
    .form-style-2 span.required{
        color:red;
    }
    .form-style-2 .tel-number-field{
        width: 40px;
        text-align: center;
    }
    .form-style-2 input.input-field, .form-style-2 .select-field{
        width: 48%;
    }
    .form-style-2 input.input-field,
    .form-style-2 .tel-number-field,
    .form-style-2 .textarea-field,
    .form-style-2 .select-field{
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        border: 1px solid #C2C2C2;
        box-shadow: 1px 1px 4px #EBEBEB;
        -moz-box-shadow: 1px 1px 4px #EBEBEB;
        -webkit-box-shadow: 1px 1px 4px #EBEBEB;
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        padding: 7px;
        outline: none;
    }
    .form-style-2 .input-field:focus,
    .form-style-2 .tel-number-field:focus,
    .form-style-2 .textarea-field:focus,
    .form-style-2 .select-field:focus{
        border: 1px solid #0C0;
    }
    .form-style-2 .textarea-field{
        height:100px;
        width: 55%;
    }
    .form-style-2 input[type=submit],
    .form-style-2 input[type=button]{
        border: none;
        padding: 8px 15px 8px 15px;
        background: #FF8500;
        color: #fff;
        box-shadow: 1px 1px 4px #DADADA;
        -moz-box-shadow: 1px 1px 4px #DADADA;
        -webkit-box-shadow: 1px 1px 4px #DADADA;
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
    }
    .form-style-2 input[type=submit]:hover,
    .form-style-2 input[type=button]:hover{
        background: #EA7B00;
        color: #fff;
    }
&lt;/style&gt;

Form Style 3

If you are into pink color, you will find this form style interesting. Form has light pink background and rounded fieldset to match your personal pink pages.

Personal

Message

HTML

&lt;div class=&quot;form-style-3&quot;&gt;
    &lt;form&gt;
            &lt;fieldset&gt;&lt;legend&gt;Personal&lt;/legend&gt;
                &lt;label for=&quot;field1&quot;&gt;&lt;span&gt;Name &lt;span class=&quot;required&quot;&gt;*&lt;/span&gt;&lt;/span&gt;&lt;input type=&quot;text&quot; class=&quot;input-field&quot; name=&quot;field1&quot; value=&quot;&quot; /&gt;&lt;/label&gt;
                &lt;label for=&quot;field2&quot;&gt;&lt;span&gt;Email &lt;span class=&quot;required&quot;&gt;*&lt;/span&gt;&lt;/span&gt;&lt;input type=&quot;email&quot; class=&quot;input-field&quot; name=&quot;field2&quot; value=&quot;&quot; /&gt;&lt;/label&gt;
                &lt;label for=&quot;field3&quot;&gt;&lt;span&gt;Phone &lt;span class=&quot;required&quot;&gt;*&lt;/span&gt;&lt;/span&gt;&lt;input type=&quot;text&quot; class=&quot;input-field&quot; name=&quot;field3&quot; value=&quot;&quot; /&gt;&lt;/label&gt;
                &lt;label for=&quot;field4&quot;&gt;&lt;span&gt;Subject&lt;/span&gt;
                &lt;select name=&quot;field4&quot; class=&quot;select-field&quot;&gt;
                    &lt;option value=&quot;Appointment&quot;&gt;Appointment&lt;/option&gt;
                    &lt;option value=&quot;Interview&quot;&gt;Interview&lt;/option&gt;
                    &lt;option value=&quot;Regarding a post&quot;&gt;Regarding a post&lt;/option&gt;
                &lt;/select&gt;&lt;/label&gt;
            &lt;/fieldset&gt;
            &lt;fieldset&gt;&lt;legend&gt;Message&lt;/legend&gt;
            &lt;label for=&quot;field6&quot;&gt;&lt;span&gt;Message &lt;span class=&quot;required&quot;&gt;*&lt;/span&gt;&lt;/span&gt;&lt;textarea name=&quot;field6&quot; class=&quot;textarea-field&quot;&gt;&lt;/textarea&gt;&lt;/label&gt;
            &lt;label&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;input type=&quot;submit&quot; value=&quot;Submit&quot; /&gt;&lt;/label&gt;
        &lt;/fieldset&gt;
    &lt;/form&gt;
&lt;/div&gt;
CSS

&lt;style type=&quot;text/css&quot;&gt;
    .form-style-3{
        max-width: 450px;
        font-family: &quot;Lucida Sans Unicode&quot;, &quot;Lucida Grande&quot;, sans-serif;
    }
    .form-style-3 label{
        display:block;
        margin-bottom: 10px;
    }
    .form-style-3 label &gt; span{
        float: left;
        width: 100px;
        color: #F072A9;
        font-weight: bold;
        font-size: 13px;
        text-shadow: 1px 1px 1px #fff;
    }
    .form-style-3 fieldset{
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        margin: 0px 0px 10px 0px;
        border: 1px solid #FFD2D2;
        padding: 20px;
        background: #FFF4F4;
        box-shadow: inset 0px 0px 15px #FFE5E5;
        -moz-box-shadow: inset 0px 0px 15px #FFE5E5;
        -webkit-box-shadow: inset 0px 0px 15px #FFE5E5;
    }
    .form-style-3 fieldset legend{
        color: #FFA0C9;
        border-top: 1px solid #FFD2D2;
        border-left: 1px solid #FFD2D2;
        border-right: 1px solid #FFD2D2;
        border-radius: 5px 5px 0px 0px;
        -webkit-border-radius: 5px 5px 0px 0px;
        -moz-border-radius: 5px 5px 0px 0px;
        background: #FFF4F4;
        padding: 0px 8px 3px 8px;
        box-shadow: -0px -1px 2px #F1F1F1;
        -moz-box-shadow:-0px -1px 2px #F1F1F1;
        -webkit-box-shadow:-0px -1px 2px #F1F1F1;
        font-weight: normal;
        font-size: 12px;
    }
    .form-style-3 textarea{
        width:250px;
        height:100px;
    }
    .form-style-3 input[type=text],
    .form-style-3 input[type=date],
    .form-style-3 input[type=datetime],
    .form-style-3 input[type=number],
    .form-style-3 input[type=search],
    .form-style-3 input[type=time],
    .form-style-3 input[type=url],
    .form-style-3 input[type=email],
    .form-style-3 select,
    .form-style-3 textarea{
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border: 1px solid #FFC2DC;
        outline: none;
        color: #F072A9;
        padding: 5px 8px 5px 8px;
        box-shadow: inset 1px 1px 4px #FFD5E7;
        -moz-box-shadow: inset 1px 1px 4px #FFD5E7;
        -webkit-box-shadow: inset 1px 1px 4px #FFD5E7;
        background: #FFEFF6;
        width:50%;
    }
    .form-style-3  input[type=submit],
    .form-style-3  input[type=button]{
        background: #EB3B88;
        border: 1px solid #C94A81;
        padding: 5px 15px 5px 15px;
        color: #FFCBE2;
        box-shadow: inset -1px -1px 3px #FF62A7;
        -moz-box-shadow: inset -1px -1px 3px #FF62A7;
        -webkit-box-shadow: inset -1px -1px 3px #FF62A7;
        border-radius: 3px;
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        font-weight: bold;
    }
    .required{
        color:red;
        font-weight:normal;
    }
&lt;/style&gt;

Form Style 4

This is another nice style with arsenic background color for your form. I tried to give it a little notebook look with dashed bottom borders on the fields.

HTML

&lt;form class=&quot;form-style-4&quot; action=&quot;&quot; method=&quot;post&quot;&gt;
    &lt;label for=&quot;field1&quot;&gt;
        &lt;span&gt;Enter Your Name&lt;/span&gt;&lt;input type=&quot;text&quot; name=&quot;field1&quot; required=&quot;true&quot; /&gt;
        &lt;/label&gt;
        &lt;label for=&quot;field2&quot;&gt;
            &lt;span&gt;Email Address&lt;/span&gt;&lt;input type=&quot;email&quot; name=&quot;field2&quot; required=&quot;true&quot; /&gt;
        &lt;/label&gt;
        &lt;label for=&quot;field3&quot;&gt;
            &lt;span&gt;Short Subject&lt;/span&gt;&lt;input type=&quot;text&quot; name=&quot;field3&quot; required=&quot;true&quot; /&gt;
        &lt;/label&gt;
        &lt;label for=&quot;field4&quot;&gt;
            &lt;span&gt;Message to Us&lt;/span&gt;&lt;textarea name=&quot;field4&quot; onkeyup=&quot;adjust_textarea(this)&quot; required=&quot;true&quot;&gt;&lt;/textarea&gt;
        &lt;/label&gt;
        &lt;label&gt;
        &lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;input type=&quot;submit&quot; value=&quot;Send Letter&quot; /&gt;
    &lt;/label&gt;
&lt;/form&gt;
CSS

&lt;style type=&quot;text/css&quot;&gt;
    .form-style-4{
        width: 450px;
        font-size: 16px;
        background: #495C70;
        padding: 30px 30px 15px 30px;
        border: 5px solid #53687E;
    }
    .form-style-4 input[type=submit],
    .form-style-4 input[type=button],
    .form-style-4 input[type=text],
    .form-style-4 input[type=email],
    .form-style-4 textarea,
    .form-style-4 label
    {
        font-family: Georgia, &quot;Times New Roman&quot;, Times, serif;
        font-size: 16px;
        color: #fff;
    }
    .form-style-4 label {
        display:block;
        margin-bottom: 10px;
    }
    .form-style-4 label &gt; span{
        display: inline-block;
        float: left;
        width: 150px;
    }
    .form-style-4 input[type=text],
    .form-style-4 input[type=email]
    {
        background: transparent;
        border: none;
        border-bottom: 1px dashed #83A4C5;
        width: 275px;
        outline: none;
        padding: 0px 0px 0px 0px;
        font-style: italic;
    }
    .form-style-4 textarea{
        font-style: italic;
        padding: 0px 0px 0px 0px;
        background: transparent;
        outline: none;
        border: none;
        border-bottom: 1px dashed #83A4C5;
        width: 275px;
        overflow: hidden;
        resize:none;
        height:20px;
    }
    .form-style-4 textarea:focus,
    .form-style-4 input[type=text]:focus,
    .form-style-4 input[type=email]:focus,
    .form-style-4 input[type=email] :focus
    {
        border-bottom: 1px dashed #D9FFA9;
    }
    .form-style-4 input[type=submit],
    .form-style-4 input[type=button]{
        background: #576E86;
        border: none;
        padding: 8px 10px 8px 10px;
        border-radius: 5px;
        color: #A8BACE;
    }
    .form-style-4 input[type=submit]:hover,
    .form-style-4 input[type=button]:hover{
    background: #394D61;
    }
&lt;/style&gt;
JS

&lt;script type=&quot;text/javascript&quot;&gt;
function adjust_textarea(h) {
    h.style.height = &quot;20px&quot;;
    h.style.height = (h.scrollHeight)+&quot;px&quot;;
}
&lt;/script&gt;

Form Style 5

Originally inspired by a codepen example, this form looks great on similar soft background. I think it is ideal for sign-up forms.

1 Candidate Info

2 Additional Info

HTML

&lt;div class=&quot;form-style-5&quot;&gt;
    &lt;form&gt;
        &lt;fieldset&gt;
            &lt;legend&gt;&lt;span class=&quot;number&quot;&gt;1&lt;/span&gt; Candidate Info&lt;/legend&gt;
                &lt;input type=&quot;text&quot; name=&quot;field1&quot; placeholder=&quot;Your Name *&quot;&gt;
                &lt;input type=&quot;email&quot; name=&quot;field2&quot; placeholder=&quot;Your Email *&quot;&gt;
                &lt;textarea name=&quot;field3&quot; placeholder=&quot;About yourself&quot;&gt;&lt;/textarea&gt;
                &lt;label for=&quot;job&quot;&gt;Interests:&lt;/label&gt;
                &lt;select id=&quot;job&quot; name=&quot;field4&quot;&gt;
                    &lt;optgroup label=&quot;Indoors&quot;&gt;
                        &lt;option value=&quot;fishkeeping&quot;&gt;Fishkeeping&lt;/option&gt;
                        &lt;option value=&quot;reading&quot;&gt;Reading&lt;/option&gt;
                        &lt;option value=&quot;boxing&quot;&gt;Boxing&lt;/option&gt;
                        &lt;option value=&quot;debate&quot;&gt;Debate&lt;/option&gt;
                        &lt;option value=&quot;gaming&quot;&gt;Gaming&lt;/option&gt;
                        &lt;option value=&quot;snooker&quot;&gt;Snooker&lt;/option&gt;
                        &lt;option value=&quot;other_indoor&quot;&gt;Other&lt;/option&gt;
                    &lt;/optgroup&gt;
                    &lt;optgroup label=&quot;Outdoors&quot;&gt;
                        &lt;option value=&quot;football&quot;&gt;Football&lt;/option&gt;
                        &lt;option value=&quot;swimming&quot;&gt;Swimming&lt;/option&gt;
                        &lt;option value=&quot;fishing&quot;&gt;Fishing&lt;/option&gt;
                        &lt;option value=&quot;climbing&quot;&gt;Climbing&lt;/option&gt;
                        &lt;option value=&quot;cycling&quot;&gt;Cycling&lt;/option&gt;
                        &lt;option value=&quot;other_outdoor&quot;&gt;Other&lt;/option&gt;
                    &lt;/optgroup&gt;
                &lt;/select&gt;
            &lt;/fieldset&gt;
            &lt;fieldset&gt;
            &lt;legend&gt;&lt;span class=&quot;number&quot;&gt;2&lt;/span&gt; Additional Info&lt;/legend&gt;
                &lt;textarea name=&quot;field3&quot; placeholder=&quot;About Your School&quot;&gt;&lt;/textarea&gt;
        &lt;/fieldset&gt;
        &lt;input type=&quot;submit&quot; value=&quot;Apply&quot; /&gt;
    &lt;/form&gt;
&lt;/div&gt;
CSS

&lt;style type=&quot;text/css&quot;&gt;
    .form-style-5{
        max-width: 500px;
        padding: 10px 20px;
        background: #f4f7f8;
        margin: 10px auto;
        padding: 20px;
        background: #f4f7f8;
        border-radius: 8px;
        font-family: Georgia, &quot;Times New Roman&quot;, Times, serif;
    }
    .form-style-5 fieldset{
        border: none;
    }
    .form-style-5 legend {
        font-size: 1.4em;
        margin-bottom: 10px;
    }
    .form-style-5 label {
        display: block;
        margin-bottom: 8px;
    }
    .form-style-5 input[type=&quot;text&quot;],
    .form-style-5 input[type=&quot;date&quot;],
    .form-style-5 input[type=&quot;datetime&quot;],
    .form-style-5 input[type=&quot;email&quot;],
    .form-style-5 input[type=&quot;number&quot;],
    .form-style-5 input[type=&quot;search&quot;],
    .form-style-5 input[type=&quot;time&quot;],
    .form-style-5 input[type=&quot;url&quot;],
    .form-style-5 textarea,
    .form-style-5 select {
        font-family: Georgia, &quot;Times New Roman&quot;, Times, serif;
        background: rgba(255,255,255,.1);
        border: none;
        border-radius: 4px;
        font-size: 15px;
        margin: 0;
        outline: 0;
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        background-color: #e8eeef;
        color:#8a97a0;
        -webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
        box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
        margin-bottom: 30px;
    }
    .form-style-5 input[type=&quot;text&quot;]:focus,
    .form-style-5 input[type=&quot;date&quot;]:focus,
    .form-style-5 input[type=&quot;datetime&quot;]:focus,
    .form-style-5 input[type=&quot;email&quot;]:focus,
    .form-style-5 input[type=&quot;number&quot;]:focus,
    .form-style-5 input[type=&quot;search&quot;]:focus,
    .form-style-5 input[type=&quot;time&quot;]:focus,
    .form-style-5 input[type=&quot;url&quot;]:focus,
    .form-style-5 textarea:focus,
    .form-style-5 select:focus{
        background: #d2d9dd;
    }
    .form-style-5 select{
        -webkit-appearance: menulist-button;
        height:35px;
    }
    .form-style-5 .number {
        background: #1abc9c;
        color: #fff;
        height: 30px;
        width: 30px;
        display: inline-block;
        font-size: 0.8em;
        margin-right: 4px;
        line-height: 30px;
        text-align: center;
        text-shadow: 0 1px 0 rgba(255,255,255,0.2);
        border-radius: 15px 15px 15px 0px;
    }
    .form-style-5 input[type=&quot;submit&quot;],
    .form-style-5 input[type=&quot;button&quot;]
    {
        position: relative;
        display: block;
        padding: 19px 39px 18px 39px;
        color: #FFF;
        margin: 0 auto;
        background: #1abc9c;
        font-size: 18px;
        text-align: center;
        font-style: normal;
        width: 100%;
        border: 1px solid #16a085;
        border-width: 1px 1px 3px;
        margin-bottom: 10px;
    }
    .form-style-5 input[type=&quot;submit&quot;]:hover,
    .form-style-5 input[type=&quot;button&quot;]:hover
    {
        background: #109177;
    }
&lt;/style&gt;

Form Style 6

It’s a simple form with large input fields. It can be used as starting point for your next great form design.

Contact Us

HTML

&lt;div class=&quot;form-style-6&quot;&gt;
&lt;h1&gt;Contact Us&lt;/h1&gt;
    &lt;form&gt;
        &lt;input type=&quot;text&quot; name=&quot;field1&quot; placeholder=&quot;Your Name&quot; /&gt;
        &lt;input type=&quot;email&quot; name=&quot;field2&quot; placeholder=&quot;Email Address&quot; /&gt;
        &lt;textarea name=&quot;field3&quot; placeholder=&quot;Type your Message&quot;&gt;&lt;/textarea&gt;
        &lt;input type=&quot;submit&quot; value=&quot;Send&quot; /&gt;
    &lt;/form&gt;
&lt;/div&gt;
CSS

&lt;style type=&quot;text/css&quot;&gt;
    .form-style-6{
        font: 95% Arial, Helvetica, sans-serif;
        max-width: 400px;
        margin: 10px auto;
        padding: 16px;
        background: #F7F7F7;
    }
    .form-style-6 h1{
        background: #43D1AF;
        padding: 20px 0;
        font-size: 140%;
        font-weight: 300;
        text-align: center;
        color: #fff;
        margin: -16px -16px 16px -16px;
    }
    .form-style-6 input[type=&quot;text&quot;],
    .form-style-6 input[type=&quot;date&quot;],
    .form-style-6 input[type=&quot;datetime&quot;],
    .form-style-6 input[type=&quot;email&quot;],
    .form-style-6 input[type=&quot;number&quot;],
    .form-style-6 input[type=&quot;search&quot;],
    .form-style-6 input[type=&quot;time&quot;],
    .form-style-6 input[type=&quot;url&quot;],
    .form-style-6 textarea,
    .form-style-6 select
    {
        -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;
        width: 100%;
        background: #fff;
        margin-bottom: 4%;
        border: 1px solid #ccc;
        padding: 3%;
        color: #555;
        font: 95% Arial, Helvetica, sans-serif;
    }
    .form-style-6 input[type=&quot;text&quot;]:focus,
    .form-style-6 input[type=&quot;date&quot;]:focus,
    .form-style-6 input[type=&quot;datetime&quot;]:focus,
    .form-style-6 input[type=&quot;email&quot;]:focus,
    .form-style-6 input[type=&quot;number&quot;]:focus,
    .form-style-6 input[type=&quot;search&quot;]:focus,
    .form-style-6 input[type=&quot;time&quot;]:focus,
    .form-style-6 input[type=&quot;url&quot;]:focus,
    .form-style-6 textarea:focus,
    .form-style-6 select:focus
    {
        box-shadow: 0 0 5px #43D1AF;
        padding: 3%;
        border: 1px solid #43D1AF;
    }
    .form-style-6 input[type=&quot;submit&quot;],
    .form-style-6 input[type=&quot;button&quot;]{
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        width: 100%;
        padding: 3%;
        background: #43D1AF;
        border-bottom: 2px solid #30C29E;
        border-top-style: none;
        border-right-style: none;
        border-left-style: none;
        color: #fff;
    }
    .form-style-6 input[type=&quot;submit&quot;]:hover,
    .form-style-6 input[type=&quot;button&quot;]:hover{
        background: #2EBC99;
    }
&lt;/style&gt;

Form Style 7

It is also inspired by a form example. It looks simple, yet sophisticated with rounded border and small info-box below fields.

Fill Form

  • Enter your full name here
  • Enter a valid email address
  • Your website address (eg: http://www.google.com)
  • Say something about yourself
HTML

&lt;form class=&quot;form-style-7&quot;&gt;
    &lt;ul&gt;
    &lt;li&gt;
        &lt;label for=&quot;name&quot;&gt;Name&lt;/label&gt;
        &lt;input type=&quot;text&quot; name=&quot;name&quot; maxlength=&quot;100&quot;&gt;
        &lt;span&gt;Enter your full name here&lt;/span&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;label for=&quot;email&quot;&gt;Email&lt;/label&gt;
        &lt;input type=&quot;email&quot; name=&quot;email&quot; maxlength=&quot;100&quot;&gt;
        &lt;span&gt;Enter a valid email address&lt;/span&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;label for=&quot;url&quot;&gt;Website&lt;/label&gt;
        &lt;input type=&quot;url&quot; name=&quot;url&quot; maxlength=&quot;100&quot;&gt;
        &lt;span&gt;Your website address (eg: http://www.google.com)&lt;/span&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;label for=&quot;bio&quot;&gt;About You&lt;/label&gt;
        &lt;textarea name=&quot;bio&quot; onkeyup=&quot;adjust_textarea(this)&quot;&gt;&lt;/textarea&gt;
        &lt;span&gt;Say something about yourself&lt;/span&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;input type=&quot;submit&quot; value=&quot;Send This&quot; &gt;
    &lt;/li&gt;
    &lt;/ul&gt;
&lt;/form&gt;

CSS

&lt;style type=&quot;text/css&quot;&gt;
    .form-style-7{
        max-width:400px;
        margin:50px auto;
        background:#fff;
        border-radius:2px;
        padding:20px;
        font-family: Georgia, &quot;Times New Roman&quot;, Times, serif;
    }
    .form-style-7 h1{
        display: block;
        text-align: center;
        padding: 0;
        margin: 0px 0px 20px 0px;
        color: #5C5C5C;
        font-size:x-large;
    }
    .form-style-7 ul{
        list-style:none;
        padding:0;
        margin:0;
    }
    .form-style-7 li{
        display: block;
        padding: 9px;
        border:1px solid #DDDDDD;
        margin-bottom: 30px;
        border-radius: 3px;
    }
    .form-style-7 li:last-child{
        border:none;
        margin-bottom: 0px;
        text-align: center;
    }
    .form-style-7 li &gt; label{
        display: block;
        float: left;
        margin-top: -19px;
        background: #FFFFFF;
        height: 14px;
        padding: 2px 5px 2px 5px;
        color: #B9B9B9;
        font-size: 14px;
        overflow: hidden;
        font-family: Arial, Helvetica, sans-serif;
    }
    .form-style-7 input[type=&quot;text&quot;],
    .form-style-7 input[type=&quot;date&quot;],
    .form-style-7 input[type=&quot;datetime&quot;],
    .form-style-7 input[type=&quot;email&quot;],
    .form-style-7 input[type=&quot;number&quot;],
    .form-style-7 input[type=&quot;search&quot;],
    .form-style-7 input[type=&quot;time&quot;],
    .form-style-7 input[type=&quot;url&quot;],
    .form-style-7 input[type=&quot;password&quot;],
    .form-style-7 textarea,
    .form-style-7 select
    {
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        width: 100%;
        display: block;
        outline: none;
        border: none;
        height: 25px;
        line-height: 25px;
        font-size: 16px;
        padding: 0;
        font-family: Georgia, &quot;Times New Roman&quot;, Times, serif;
    }
    .form-style-7 input[type=&quot;text&quot;]:focus,
    .form-style-7 input[type=&quot;date&quot;]:focus,
    .form-style-7 input[type=&quot;datetime&quot;]:focus,
    .form-style-7 input[type=&quot;email&quot;]:focus,
    .form-style-7 input[type=&quot;number&quot;]:focus,
    .form-style-7 input[type=&quot;search&quot;]:focus,
    .form-style-7 input[type=&quot;time&quot;]:focus,
    .form-style-7 input[type=&quot;url&quot;]:focus,
    .form-style-7 input[type=&quot;password&quot;]:focus,
    .form-style-7 textarea:focus,
    .form-style-7 select:focus
    {
    }
    .form-style-7 li &gt; span{
        background: #F3F3F3;
        display: block;
        padding: 3px;
        margin: 0 -9px -9px -9px;
        text-align: center;
        color: #C0C0C0;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
    }
    .form-style-7 textarea{
        resize:none;
    }
    .form-style-7 input[type=&quot;submit&quot;],
    .form-style-7 input[type=&quot;button&quot;]{
        background: #2471FF;
        border: none;
        padding: 10px 20px 10px 20px;
        border-bottom: 3px solid #5994FF;
        border-radius: 3px;
        color: #D2E2FF;
    }
    .form-style-7 input[type=&quot;submit&quot;]:hover,
    .form-style-7 input[type=&quot;button&quot;]:hover{
        background: #6B9FFF;
        color:#fff;
    }
&lt;/style&gt;
JS

            <script type="text/javascript">
                function adjust_textarea(h) {
                    h.style.height = "20px";
                    h.style.height = (h.scrollHeight)+"px";
                }
            </script>

Form Style 8

Form fields have with 1 pixel bottom border, and uses Google Font called Open Sans Condensed. This form looks great on dim backgrounds.

Login to your account

HTML

&lt;div class=&quot;form-style-8&quot;&gt;
    &lt;h2&gt;Login to your account&lt;/h2&gt;
    &lt;form&gt;
        &lt;input type=&quot;text&quot; name=&quot;field1&quot; placeholder=&quot;Full Name&quot; /&gt;
        &lt;input type=&quot;email&quot; name=&quot;field2&quot; placeholder=&quot;Email&quot; /&gt;
        &lt;input type=&quot;url&quot; name=&quot;field3&quot; placeholder=&quot;Website&quot; /&gt;
        &lt;textarea placeholder=&quot;Message&quot; onkeyup=&quot;adjust_textarea(this)&quot;&gt;&lt;/textarea&gt;
        &lt;input type=&quot;button&quot; value=&quot;Send Message&quot; /&gt;
    &lt;/form&gt;
&lt;/div&gt;

CSS

&lt;link href=&apos;https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300&apos; rel=&apos;stylesheet&apos; type=&apos;text/css&apos;&gt;
&lt;style type=&quot;text/css&quot;&gt;
    .form-style-8{
        font-family: &apos;Open Sans Condensed&apos;, arial, sans;
        width: 500px;
        padding: 30px;
        background: #FFFFFF;
        margin: 50px auto;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.22);
        -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.22);
        -webkit-box-shadow:  0px 0px 15px rgba(0, 0, 0, 0.22);
    }
    .form-style-8 h2{
        background: #4D4D4D;
        text-transform: uppercase;
        font-family: &apos;Open Sans Condensed&apos;, sans-serif;
        color: #797979;
        font-size: 18px;
        font-weight: 100;
        padding: 20px;
        margin: -30px -30px 30px -30px;
    }
    .form-style-8 input[type=&quot;text&quot;],
    .form-style-8 input[type=&quot;date&quot;],
    .form-style-8 input[type=&quot;datetime&quot;],
    .form-style-8 input[type=&quot;email&quot;],
    .form-style-8 input[type=&quot;number&quot;],
    .form-style-8 input[type=&quot;search&quot;],
    .form-style-8 input[type=&quot;time&quot;],
    .form-style-8 input[type=&quot;url&quot;],
    .form-style-8 input[type=&quot;password&quot;],
    .form-style-8 textarea,
    .form-style-8 select
    {
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        outline: none;
        display: block;
        width: 100%;
        padding: 7px;
        border: none;
        border-bottom: 1px solid #ddd;
        background: transparent;
        margin-bottom: 10px;
        font: 16px Arial, Helvetica, sans-serif;
        height: 45px;
    }
    .form-style-8 textarea{
        resize:none;
        overflow: hidden;
    }
    .form-style-8 input[type=&quot;button&quot;],
    .form-style-8 input[type=&quot;submit&quot;]{
        -moz-box-shadow: inset 0px 1px 0px 0px #45D6D6;
        -webkit-box-shadow: inset 0px 1px 0px 0px #45D6D6;
        box-shadow: inset 0px 1px 0px 0px #45D6D6;
        background-color: #2CBBBB;
        border: 1px solid #27A0A0;
        display: inline-block;
        cursor: pointer;
        color: #FFFFFF;
        font-family: &apos;Open Sans Condensed&apos;, sans-serif;
        font-size: 14px;
        padding: 8px 18px;
        text-decoration: none;
        text-transform: uppercase;
    }
    .form-style-8 input[type=&quot;button&quot;]:hover,
    .form-style-8 input[type=&quot;submit&quot;]:hover {
        background:linear-gradient(to bottom, #34CACA 5%, #30C9C9 100%);
        background-color:#34CACA;
    }
    &lt;/style&gt;
JS

    &lt;script type=&quot;text/javascript&quot;&gt;
    //auto expand textarea
    function adjust_textarea(h) {
        h.style.height = &quot;20px&quot;;
        h.style.height = (h.scrollHeight)+&quot;px&quot;;
    }
&lt;/script&gt;

Form Style 9

Another beautiful CSS form that works well with dark blue background. But it doesn’t have labels, and relies on placeholder. So, if you are worried about older browsers, you can always find alternatives.

HTML

&lt;form class=&quot;form-style-9&quot;&gt;
    &lt;ul&gt;&lt;li&gt;
        &lt;input type=&quot;text&quot; name=&quot;field1&quot; class=&quot;field-style field-split align-left&quot; placeholder=&quot;Name&quot; /&gt;
        &lt;input type=&quot;email&quot; name=&quot;field2&quot; class=&quot;field-style field-split align-right&quot; placeholder=&quot;Email&quot; /&gt;
    &lt;/li&gt;&lt;li&gt;
        &lt;input type=&quot;text&quot; name=&quot;field3&quot; class=&quot;field-style field-split align-left&quot; placeholder=&quot;Phone&quot; /&gt;
        &lt;input type=&quot;url&quot; name=&quot;field4&quot; class=&quot;field-style field-split align-right&quot; placeholder=&quot;Website&quot; /&gt;
    &lt;/li&gt;&lt;li&gt;
    &lt;input type=&quot;text&quot; name=&quot;field3&quot; class=&quot;field-style field-full align-none&quot; placeholder=&quot;Subject&quot; /&gt;
    &lt;/li&gt;&lt;li&gt;
    &lt;textarea name=&quot;field5&quot; class=&quot;field-style&quot; placeholder=&quot;Message&quot;&gt;&lt;/textarea&gt;
    &lt;/li&gt;&lt;li&gt;
    &lt;input type=&quot;submit&quot; value=&quot;Send Message&quot; /&gt;
    &lt;/li&gt;&lt;/ul&gt;
&lt;/form&gt;
CSS

&lt;style type=&quot;text/css&quot;&gt;
    .form-style-9{
        max-width: 450px;
        background: #FAFAFA;
        padding: 30px;
        margin: 50px auto;
        box-shadow: 1px 1px 25px rgba(0, 0, 0, 0.35);
        border-radius: 10px;
        border: 6px solid #305A72;
    }
    .form-style-9 ul{
        padding:0;
        margin:0;
        list-style:none;
    }
    .form-style-9 ul li{
        display: block;
        margin-bottom: 10px;
        min-height: 35px;
    }
    .form-style-9 ul li  .field-style{
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        padding: 8px;
        outline: none;
        border: 1px solid #B0CFE0;
        -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;
    }.form-style-9 ul li  .field-style:focus{
        box-shadow: 0 0 5px #B0CFE0;
        border:1px solid #B0CFE0;
    }
    .form-style-9 ul li .field-split{
        width: 49%;
    }
    .form-style-9 ul li .field-full{
        width: 100%;
    }
    .form-style-9 ul li input.align-left{
        float:left;
    }
    .form-style-9 ul li input.align-right{
        float:right;
    }
    .form-style-9 ul li textarea{
        width: 100%;
        height: 100px;
    }
    .form-style-9 ul li input[type=&quot;button&quot;],
    .form-style-9 ul li input[type=&quot;submit&quot;] {
        -moz-box-shadow: inset 0px 1px 0px 0px #3985B1;
        -webkit-box-shadow: inset 0px 1px 0px 0px #3985B1;
        box-shadow: inset 0px 1px 0px 0px #3985B1;
        background-color: #216288;
        border: 1px solid #17445E;
        display: inline-block;
        cursor: pointer;
        color: #FFFFFF;
        padding: 8px 18px;
        text-decoration: none;
        font: 12px Arial, Helvetica, sans-serif;
    }
    .form-style-9 ul li input[type=&quot;button&quot;]:hover,
    .form-style-9 ul li input[type=&quot;submit&quot;]:hover {
        background: linear-gradient(to bottom, #2D77A2 5%, #337DA8 100%);
        background-color: #28739E;
    }
&lt;/style&gt;

Form Style 10

Form Style 10 looks great on any light background, such as light blue, like green, light yellow etc. It uses Google font called “Bitter” for heading and section titles.

Sign Up Now!Sign up and tell us what you think of the site!

1First Name & Address
2Email & Phone
3Passwords
You agree to our Terms and Policy.
HTML

&lt;div class=&quot;form-style-10&quot;&gt;
    &lt;h1&gt;Sign Up Now!&lt;span&gt;Sign up and tell us what you think of the site!&lt;/span&gt;&lt;/h1&gt;
    &lt;form&gt;
        &lt;div class=&quot;section&quot;&gt;&lt;span&gt;1&lt;/span&gt;First Name &amp;amp; Address&lt;/div&gt;
        &lt;div class=&quot;inner-wrap&quot;&gt;
            &lt;label&gt;Your Full Name &lt;input type=&quot;text&quot; name=&quot;field1&quot; /&gt;&lt;/label&gt;
            &lt;label&gt;Address &lt;textarea name=&quot;field2&quot;&gt;&lt;/textarea&gt;&lt;/label&gt;
        &lt;/div&gt;
        &lt;div class=&quot;section&quot;&gt;&lt;span&gt;2&lt;/span&gt;Email &amp;amp; Phone&lt;/div&gt;
        &lt;div class=&quot;inner-wrap&quot;&gt;
            &lt;label&gt;Email Address &lt;input type=&quot;email&quot; name=&quot;field3&quot; /&gt;&lt;/label&gt;
            &lt;label&gt;Phone Number &lt;input type=&quot;text&quot; name=&quot;field4&quot; /&gt;&lt;/label&gt;
        &lt;/div&gt;
        &lt;div class=&quot;section&quot;&gt;&lt;span&gt;3&lt;/span&gt;Passwords&lt;/div&gt;
            &lt;div class=&quot;inner-wrap&quot;&gt;
            &lt;label&gt;Password &lt;input type=&quot;password&quot; name=&quot;field5&quot; /&gt;&lt;/label&gt;
            &lt;label&gt;Confirm Password &lt;input type=&quot;password&quot; name=&quot;field6&quot; /&gt;&lt;/label&gt;
        &lt;/div&gt;
        &lt;div class=&quot;button-section&quot;&gt;
        &lt;input type=&quot;submit&quot; name=&quot;Sign Up&quot; /&gt;
        &lt;span class=&quot;privacy-policy&quot;&gt;
        &lt;input type=&quot;checkbox&quot; name=&quot;field7&quot;&gt;You agree to our Terms and Policy.
        &lt;/span&gt;
        &lt;/div&gt;
    &lt;/form&gt;
&lt;/div&gt;
CSS

&lt;link href=&apos;http://fonts.googleapis.com/css?family=Bitter&apos; rel=&apos;stylesheet&apos; type=&apos;text/css&apos;&gt;
&lt;style type=&quot;text/css&quot;&gt;
    .form-style-10{
        width:450px;
        padding:30px;
        margin:40px auto;
        background: #FFF;
        border-radius: 10px;
        -webkit-border-radius:10px;
        -moz-border-radius: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.13);
        -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.13);
        -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.13);
    }
    .form-style-10 .inner-wrap{
        padding: 30px;
        background: #F8F8F8;
        border-radius: 6px;
        margin-bottom: 15px;
    }
    .form-style-10 h1{
        background: #2A88AD;
        padding: 20px 30px 15px 30px;
        margin: -30px -30px 30px -30px;
        border-radius: 10px 10px 0 0;
        -webkit-border-radius: 10px 10px 0 0;
        -moz-border-radius: 10px 10px 0 0;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.12);
        font: normal 30px &apos;Bitter&apos;, serif;
        -moz-box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
        -webkit-box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
        box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
        border: 1px solid #257C9E;
    }
    .form-style-10 h1 &gt; span{
        display: block;
        margin-top: 2px;
        font: 13px Arial, Helvetica, sans-serif;
    }
    .form-style-10 label{
        display: block;
        font: 13px Arial, Helvetica, sans-serif;
        color: #888;
        margin-bottom: 15px;
    }
    .form-style-10 input[type=&quot;text&quot;],
    .form-style-10 input[type=&quot;date&quot;],
    .form-style-10 input[type=&quot;datetime&quot;],
    .form-style-10 input[type=&quot;email&quot;],
    .form-style-10 input[type=&quot;number&quot;],
    .form-style-10 input[type=&quot;search&quot;],
    .form-style-10 input[type=&quot;time&quot;],
    .form-style-10 input[type=&quot;url&quot;],
    .form-style-10 input[type=&quot;password&quot;],
    .form-style-10 textarea,
    .form-style-10 select {
        display: block;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        width: 100%;
        padding: 8px;
        border-radius: 6px;
        -webkit-border-radius:6px;
        -moz-border-radius:6px;
        border: 2px solid #fff;
        box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.33);
        -moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.33);
        -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.33);
    }
    .form-style-10 .section{
        font: normal 20px &apos;Bitter&apos;, serif;
        color: #2A88AD;
        margin-bottom: 5px;
    }
    .form-style-10 .section span {
        background: #2A88AD;
        padding: 5px 10px 5px 10px;
        position: absolute;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border: 4px solid #fff;
        font-size: 14px;
        margin-left: -45px;
        color: #fff;
        margin-top: -3px;
    }
    .form-style-10 input[type=&quot;button&quot;],
    .form-style-10 input[type=&quot;submit&quot;]{
        background: #2A88AD;
        padding: 8px 20px 8px 20px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.12);
        font: normal 30px &apos;Bitter&apos;, serif;
        -moz-box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
        -webkit-box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
        box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
        border: 1px solid #257C9E;
        font-size: 15px;
    }
    .form-style-10 input[type=&quot;button&quot;]:hover,
    .form-style-10 input[type=&quot;submit&quot;]:hover{
        background: #2A6881;
        -moz-box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.28);
        -webkit-box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.28);
        box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.28);
    }
    .form-style-10 .privacy-policy{
        float: right;
        width: 250px;
        font: 12px Arial, Helvetica, sans-serif;
        color: #4D4D4D;
        margin-top: 10px;
        text-align: right;
    }
&lt;/style&gt;

Below you will find a downloadable Zip file, which contains all 10 form styles ready to be used in your projects. All the best!

Download ZIP