html, body  {
    width:100%;
    height:100%;
    padding:0;
    margin:0;
}
body  {
    background:#56687c url(../img/bg.jpg) center center no-repeat;
    background-size:cover;
    background-attachment:fixed;
    backdrop-filter:brightness(60%);
}
.wrapper  {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:100vh;
}
.header  {
    width:100%;
    padding:10px 8px;
    background:#000000;
}
.pagecontent  {
    flex:1;
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:45px 8px;
}
.island  {
    width:100%;
    max-width:850px;
    background:rgba(0,0,0,0.9);
    color:#ffffff;
    padding:18px 14px;
    backdrop-filter:blur(5px);
}
.labelbtn  {
    background:rgba(255,255,255,0.08);
    padding:8px 8px;
    display:block;
    width:100%;
    margin-bottom:6px;
    font-size:0.95em;
    cursor:pointer;
    transition:background 0.3s;
}
.labelbtn:hover  {
    background:rgba(255,255,255,0.2);
}
.labelbtn input[type=checkbox]  {
    width:18px;
    height:18px;
    vertical-align:text-top;
    margin-right:6px;
}
.forminfo  {
    background:rgba(255,255,255,0.075);
    padding:12px 8px;
    font-size:0.85em;
}
.btn  {
    border:none;
    border-radius:0;
    text-transform:uppercase;
}
.btn-primary  {
    background-color:#ddac5f;
}
.btn-primary:hover,.btn-primary:focus  {
    background-color:#000000!important;
    box-shadow:none!important;
}
.btn-primary:disabled  {
    background-color:#000000!important;
}
hr  {
    border-top-color:rgba(255,255,255,0.15);
}
