/*
 *
 * Template Name: Flat Contact Form
 * Description: Flat Contact Form
 * Author: Anli Zaimi
 * Author URI: http://azmind.com
 *
 */


body {
    background: #eee;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: 500;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

.page-container {
    margin: 0 auto;
    padding: 120px 0 20px 0;
}

.addf {
    position: relative;
    width: 330px;
    margin: 0 auto;
    background: #F0F8FF;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.addf h1 {
    height: 80px;
    margin-bottom: 30px;
    background: #00FFFF;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-family: 'Patua One', cursive;
    font-size: 36px;
    color: #00008B;
    text-transform: uppercase;
    line-height: 80px;
    text-align: center;
   
}

.addf input {
    width: 330px;
    height: 70px;
    //***margin: 0 0 20px 153px;**//
    padding: 0 18px;
    background: #008B8B;
    border: 0px solid #008B8B;
    -moz-box-shadow: 0 5px 0 0 #008B8B;
   //** -webkit-box-shadow: 0 5px 0 0 #008B8B;**//
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: #000000;
    outline: none;
}

.addf input:hover {
    background: #6495ED;
    color: #f8f8f8;
    text-shadow: 0 3px 0 #e15e28;

.addf input:-moz-placeholder { color: #D3D3D3; }
.addf input:-ms-input-placeholder { color: #D3D3D3; }
.addf input::-webkit-input-placeholder { color: #D3D3D3; }

.addf textarea {
    width: 302px;
    height: 92px;
    margin: 0 0 20px 30px;
    padding: 10px 18px 0 18px;
    background: #fffbec;
    border: 1px solid #fffbec;
    -moz-box-shadow: 0 5px 0 0 #faedb5;
    -webkit-box-shadow: 0 5px 0 0 #faedb5;
    box-shadow: 0 5px 0 0 #faedb5;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: #cc9471;
    outline: none;
}

.addf textarea:-moz-placeholder { color: #cc9471; }
.addf textarea:-ms-input-placeholder { color: #cc9471; }
.addf textarea::-webkit-input-placeholder { color: #cc9471; }

.addf button {
    width: 650px;
    height: 70px;
    margin-top: 14px;
    padding: 0;
    background: #008B8B;
    border: 0;
    -moz-border-radius-bottomleft: 4px;
    -moz-border-radius-bottomright: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    cursor: pointer;
    font-family: 'Patua One', cursive;
    font-size: 40px;
    color: #000000;
    text-transform: uppercase;
    line-height: 70px;
    text-align: center;
    text-shadow: 0 2px 0 #fce653;
}

.addf button:hover {
    background: #6495ED;
    color: #f8f8f8;
    text-shadow: 0 3px 0 #e15e28;
}

.addf input:focus,
.addf textarea:focus {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.addf input,
.addf textarea,
.addf button {
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
}

.addf p {
    margin: 0 30px;
    padding-bottom: 30px;
    font-size: 40px;
    color: #000000;
    line-height: 30px;
	text-align: center;
}

.error {
    display: none;
    position: absolute;
    left: 390px;
    height: 44px;
    padding: 0 25px;
    background: #f8cc37;
    font-size: 15px;
    color: #4b2813;
    font-style: italic;
    line-height: 44px;
    white-space: nowrap;
    text-shadow: 0 2px 0 #fce653;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.error::before {
    content: '';
    position: absolute;
    top: 17px;
    left: -15px;
    border: 5px solid rgba(248, 204, 55, 0);
    border-right: 10px solid #f8cc37;
}


