html{
    overflow: hidden;
}
body{
    font-family: Arial, Tahoma, Verdana, Georgia;
    padding: 12px 12px;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.7);
    margin: 0;
}
form{
    padding:10px;
    color:white;
}

input{
    width: 93.40%;
    height: 40px;
    padding: 0 2%;
    margin-right: 2%;
    margin-bottom: 15px;
    color: #252525;
    border: none;
    border: 1px solid #fff;
    background-color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    float: left;
    -webkit-border-radius: 3px 3px;
    -moz-border-radius: 3px 3px;
    border-radius: 3px 3px;
}

textarea{
    width: 93.40%;
    padding: 5px 2%;
    margin-right: 2%;
    margin-bottom: 15px;
    color: #252525;
    border: none;
    border: 1px solid #fff;
    background-color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    float: left;
    -webkit-border-radius: 3px 3px;
    -moz-border-radius: 3px 3px;
    border-radius: 3px 3px;
}

button{
    color: #fff;
    border: 1px solid #4C7BA0;
    background-color: #4C7BA0;
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    padding: 12px 25px;
    position: relative;
    text-transform: uppercase;
    -webkit-border-radius: 3px 3px;
    -moz-border-radius: 3px 3px;
    border-radius: 3px 3px;
    transition: all .50s ease-in-out;
    -moz-transition: all .50s ease-in-out;
    -webkit-transition: all .50s ease-in-out;
}

button:hover{
    background-color: #467294;
    border:1px solid #467294;
    transition: all .50s ease-in-out;
    -moz-transition: all .50s ease-in-out;
    -webkit-transition: all .50s ease-in-out;
}