@import url('demo.css');

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

body{
    background: #d8dbdc center center;
}

form{
    background: #d8dbdc url(bg.png) no-repeat center center;
    vertical-align:middle;
    margin:auto;
    position:relative;
    width:928px;
    height:572px;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 13px;
    font-style: italic;
    /*line-height: 24px;
    font-weight: bold;*/
    color: #000;
    text-decoration: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding-left:260px;
    padding-top:240px;
}

.form input::-webkit-input-placeholder {
    color: rgba(0, 0, 0,0.7);
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.form input:-moz-placeholder {
    color: rgba(0, 0, 0,0.7);
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.form input:-ms-input-placeholder {
    color: rgba(0, 0, 0,0.7);
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.form input[type=text],
.form input[type=password]{
     width:440px;
     padding-left:10px;
     margin-top:5px;
     margin-left:-20px;
     display:block;
     border: 1px solid #999;
     height: 40px;
     border-radius:5px;
     -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
     -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
     box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
     background: rgba(255,255,255,0.3);
     box-shadow: 
         0 1px 0 rgba(255,255,255,0.2), 
         inset 0 1px 1px rgba(0,0,0,0.1);
     -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
     -ms-transition: all 0.3s ease-out;
     -o-transition: all 0.3s ease-out;
     transition: all 0.3s ease-out;

     font-family: 'Raleway', 'Lato', Arial, sans-serif;
     color: #000;
     font-size: 20px;
}

.form input[type=submit] {
     width: 130px;
     height: 40px;
     margin-left:290px;
     
     
     background: #ffcb08;
     background: -moz-linear-gradient(rgba(255,203,8,1), rgba(237,188,3,0.5));
     background: -ms-linear-gradient(rgba(255,203,8,1), rgba(237,188,3,0.5));
     background: -o-linear-gradient(rgba(255,203,8,1), rgba(237,188,3,0.5));
     background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255,203,8,1)), to(rgba(237,188,3,0.5)));
     background: -webkit-linear-gradient(rgba(255,203,8,1), rgba(237,188,3,0.5));
     background: linear-gradient(rgba(255,203,8,1), rgba(237,188,3,0.5));    
     border-radius: 5px;
     border: 1px solid #d8ab00;
     box-shadow: inset 0 1px rgba(255,255,255,0.4), 0 2px 1px rgba(0,0,0,0.1);
     cursor: pointer;
     -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
     -ms-transition: all 0.3s ease-out;
     -o-transition: all 0.3s ease-out;
     transition: all 0.3s ease-out;

     color:#000;
     text-shadow: 0 1px 0 rgba(0,0,0,0.3);
     font-size: 16px;
     font-weight: bold;
     font-family: 'Raleway', 'Lato', Arial, sans-serif;
}

textarea#feedback {
     width:400px;
     height:150px;
}

textarea.message {
    display:block;
}

input.submit {
     width:100px;
     position:absolute;
     right:0px;
     bottom:20px;
     background:#ff5c5c;
     color:#000;
     font-family: Tahoma, Geneva, sans-serif;
     height:30px;
     -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
     border-radius: 15px;
     border: 1p solid #999;
}
input.submit:hover {
     background:#ffcb08;
     color:#ffcb08;
}

textarea:focus, input:focus {
    border: 1px solid #ffcb08;
}
