html, body{
	margin:0px;
	padding:0px;
	height: 100%;
	width: 100%;
	font-family: Roboto, sans-serif;
}
body{
    background-image: url("images/big-wave.jpg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#form-container{
    width:210px;
    display:block;
    padding:20px;
    border-radius:5px;
    border:1px solid #ccc;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 3px #ccc;
    background-color:rgba(20,20,20,0.6);
}
table{
    margin-left: auto;
    margin-right: auto;
}
table tr{
    
}
table tr td{
    text-align:center;
    padding-bottom:4px;
}
table tr td h3 {
    color:#ccc;
    margin-bottom:10px;
}
input {
    width:calc( 100% - 8px);
    border-radius: .25em;
    border:0px;
    height:20px;
    margin:0 auto;
}
.button {
    padding: 4px 14px;
    text-decoration: none;
    background-color:rgb(0, 105, 172);
    color: #fff;
    font-size: 0.8em;
    /*border-radius: .25em;*/
    border-radius:24px;
    display: inline-block;
    text-align: center;
    opacity: .90;
    border: none;
    cursor:pointer;
    height:24px;
    width:100%;
    font-weight:bold;
    margin:0 auto;
}
.button:hover{
    background-color:rgb(0, 89, 147);
}
img#AC-logo{
    display: block;
    width:140px;
    margin: 0px auto;
}