body,html{
    height: 100%;
    min-height: 100%;
    color: #212121;
}
body{
    background-color: #f7f7f7;
    font-family: 'Open Sans', sans-serif;
}

.horizontal-center{
    display: table;
    width: 100%;
    height: 100%;
    table-layout: fixed;
}
.horizontal-center .vertical-center{
    display: table-cell;
    padding: 170px 50px;
    vertical-align: middle;
}
.main{
    text-align: center;
    position: relative;
    width: 800px;
    max-width: 90%;
    margin: auto;
    border-radius: 5px;
    background: #fff;
    min-height: 600px;
    padding: 70px 50px 190px 50px;
    box-shadow: 0 0 15px -10px #999;
    font-size: 1.2em;
}
.main .main-header{
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    padding: 15px 15px 5px 15px;
    border-bottom: solid 2px #f0f0f0;
    text-align: right;
}
.main .main-header a{
    font-size: 0.7em;
    text-transform: uppercase;
}
.main .main-footer{
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    padding: 15px;
    border-top: solid 2px #f0f0f0;
}
.main .main-body .form-group{
    margin-left: auto;
    margin-right: auto;
    max-width: 510px;
}
.main .main-body .title{
    margin-bottom: 50px;
    height: 40px;
    text-transform: uppercase;
}
.main .main-body .title h2{
    display: inline-block;
    padding: 0 15px;
    line-height: 40px;
    height: 40px;
    background: #69c2e8;
    color: #fff;
    font-size: 1em;
    border-radius: 3px;
}
.main .main-header a,
.main .main-body .list-group a{
    color: #414141;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.main .main-header a:hover,
.main .main-body .list-group a:hover{
    color: #32a1cf;
}
.main form legend,
.main form label{
    display: block;
    text-align: left;
    font-size: 0.8em;
    color: #999;
    text-transform: uppercase;
}
.main .main-body .form-control {
    border-radius: 2px;
    background: #f7f7f7;
    border: solid 1px #ddd;
    padding: 15px;
    height: auto;
    font-size: 1.1em;
}
#home.main .main-body .form-control {
    padding: 6px 8px;
    font-size: 1em;
}
.main .main-footer .btn{
    border: none;
    border-radius: 2px;
    padding: 15px 30px;
    text-transform: uppercase;
}
#home.main{
    width: 1200px;
    max-width: 100%;
}
#home table{
    margin-top: 50px;
}
#home table .form-group{
    margin: 0;
}
#home table .table-state{
    vertical-align: middle;
    text-align: center;
}
#home table .table-state span{
    display: block;
    padding: 10px;
    cursor: help;
}
#home table .table-state i{
    color: #dddddd;
}
#home table .table-state i.success{
    color: #17a2b8;
}
@media (max-width: 767px){
    .horizontal-center .vertical-center{
        padding: 60px 0 40px 0;
    }
    .main{
        padding-left: 15px;
        padding-right: 15px;
        max-width: none;
        width: 100%;
    }
}
@media (max-width: 575px){
    .main{
        font-size: 1.1em;
    }
}