body, html {
    width:100%;
    height:100%;
    margin:0;
    padding:0;
}

body {
    font-family: Bull-Regular;
    background-color:#a5b1c2;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), color-stop(25%, #f6f6f6));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.25) 0%, #f6f6f6 25%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.25) 0%, #f6f6f6 25%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, #f6f6f6 25%);
}

div, input, button, form {
    box-sizing: border-box;
}

form {
    margin: 0;
    padding: 2vh;
    background-color: #FFF;
    -webkit-box-shadow: 0px 0px 26px 20px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 26px 20px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 26px 20px rgba(0,0,0,0.2);
}

#main {
    position: relative;
    top:0;
    left:0;
    width:100%;
    height:100%;
    text-align: center;
}

#login-container {
    position: absolute;
    left:calc(50vw - 200px);
    top:14vh;
    width:400px;
}

#logo {
    margin-bottom:20px;
    padding:10px;
}

#login-form {
    display:none;
}

input {
    text-align: center;
    border:1px solid #666;
    font-size:14px;
}

input, button {
    display:block;
    width: 100%;
    height: 30px;
    margin-bottom: 10px;
    font-family: Bull-Regular;
}

button {
    height: 40px;
    margin-top: 20px;
    border:none;
    background-color:#fad50a;
    color:#000;
    font-size:18px;
    font-family: Bull-Bold;
    border-radius:5px;
    cursor: pointer;
}

#sso {
    background-color:#162173;
    background-image: url(images/rb-logo_small.png);
    background-position: 74px 10px;
    background-size: 18%;
    background-repeat: no-repeat;
    color: #FFF;
    margin-top: 10px;
    height: auto;
    padding: 16px 16px 16px 83px;
}

#instructions {
    padding:20px 20px 10px 20px;
    text-align: center;
    color:#666;
}

h1 {
    font-family: Bull-Bold;
    font-size: 23px;
    margin:0 0 30px 0;

    color:#000;
}

#error {
    text-align: center;
    margin-bottom: 20px;
    background-color: #db0a40;
    color:#FFF;
    padding:10px;
    display:none;
}


@font-face {
    font-family: 'Bull-Regular';
    src: url(fonts/Bull-Regular.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bull-Medium';
    src: url(fonts/Bull-Medium.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bull-Bold';
    src: url(fonts/Bull-Bold.ttf);
    font-weight: normal;
    font-style: normal;
}