
@font-face {
    font-family: 'BiancoSerif-bold';
    src: url('../fonts/BiancoSerifTrial-Bold.woff2');
    font-weight: bold;
    font-style: bold;
}

@font-face {
    font-family: 'BiancoSerif-regular';
    src: url('../fonts/BiancoSerifTrial-Regular.woff2');
    font-weight: normal;
    font-style: normal;
}


html, body {
    margin: 0px;
    font-family: 'BiancoSerif-regular';
    color: #616161;
}
body{
    background-image: url('../images/gpm_bg.webp');
    background-size: cover;
    background-position: center top;
}

*{
    box-sizing: border-box;
}
a{
    text-decoration: none !important; 
    color: #333;
}
#login-wrapper {
    width: 260px;
    height: 360px;
    margin: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -130px;
    margin-top: -180px;
    font-size: 16pt;
    background: #000;
    opacity: .8;
    padding: 20px;
    font-family: BiancoSerif-regular;
}

#login-wrapper input{
    width: 100%;
    padding: 8px;
    border: 1px solid #f1f3ea;
    background: #000;
    margin: 10px 0px;
    color: #616161;
}

.login-brand-logo{
    display: block;
    margin: auto;
    margin-bottom: 30px;
}
.login-button{
    width: 100%;
    background-color: #c1a264;
    border: 1px;
    color: white;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-family: BiancoSerif-regular;
    margin-top: 10px;
    cursor: pointer;
}