body{
    font-family:  arial, verdana, sans-serif;
    background:url('images/bg.jpg');
    color:#AAA;
}

html, body{height:100%;}

*{margin:0px; border:0px; padding:0px;}
.clear{height:0px; clear:both;}

/*Global Styles*/
.red{
    color:#6D1212;
}
h1{margin-bottom:20px;}
h2{margin-bottom:10px; font-size:12px; color:#f8f5f5; font-family:Times New Roman, Times, serif;}
p{margin-bottom:30px; line-height:18px; text-align:justify;}


input[type=text], input[type=password] {
    box-sizing: border-box;
    width:100%;
    background:#363636;
    border:1px solid #363636;
    padding:5px;
    color:#f8f5f5;
    font-size:12px;
    font-family: "lucida grande", tahoma, verdana, arial, sans-serif;
}
textarea{
    box-sizing: border-box;
    width:100%;
    background:#363636;
    border:1px solid #363636;
    padding:5px;
    color:#f8f5f5;
    font-size:12px;
    font-family: "lucida grande", tahoma, verdana, arial, sans-serif;
    resize:none;
    height:300px;
}

.button{
    background: black;
    color:white;
    display:inline-block;
    text-decoration:none;
    border:none;
    padding:10px 20px 10px 20px;
    font-size:12px;
    font-weight:bold;
    cursor:pointer;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    margin-bottom: 40px;
}
.button:hover{
    background:#923233;
}