@font-face {
    font-family: "Roboto-Thin";
    src: url("../fonts/Roboto/Roboto-Thin.ttf");
}

@font-face {
    font-family: "Roboto-Regular";
    src: url("../fonts/Roboto/Roboto-Regular.ttf");
}

@font-face {
    font-family: "Roboto-Bold";
    src: url("../fonts/Roboto/Roboto-Bold.ttf");
}

@font-face {
    font-family: "SourceSansPro";
    src: url("../fonts/Source_Sans_Pro/SourceSansPro-Regular.ttf");
}

@font-face {
    font-family: "SourceSansPro-Bold";
    src: url("../fonts/Source_Sans_Pro/SourceSansPro-Bold.ttf");
}

body {
    margin: 0px;
    font-family: "SourceSansPro";
    color: #006388;
    background: url("../images/bg_login.jpg") no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.container {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.lang {
    float: right;
    font-family: "SourceSansPro";
    font-size: 12px;
    color: #ffffff;
    margin-top: 2px;
    margin-right: 10px;
}

.lang_option {
    float: left;
}

.lang_option:hover {
    text-decoration: underline;
    cursor: hand;
    cursor: pointer;
}

.lang_option_bold {
    font-weight: bold;
}

.login {
    display: inline-block;
    width: 500px;
    text-align: left;
    border-radius: 6px;
    box-shadow: 0px 0px 4px #bbbbbb;
    background: #ffffff;
}

.login_button {
    display: table;
    margin: 0 auto;
    margin-top: 20px;
}

.login_title {
    font-family: "SourceSansPro";
    font-size: 22px;
    padding: 20px;
    line-height: 30px;
    text-align: center;
}

.login_form {
    font-size: 14px;
    line-height: 22px;
    padding: 50px;
    padding-top: 20px;
}

.login_bottom {
    padding: 50px;
    text-align: left;
    font-size: 14px;
}

.login_bottom_left {
    float: left;
    width: 50%;
}

.login_bottom_right {
    float: right;
    text-align: right;
    width: 50%;
}

.login_bottom_right:after {
    clear: both;
}

.login_input {
    font-family: "SourceSansPro";
    font-size: 16px;
    background: #ffffff;
    border: none;
    border-radius: 4px;
    border-bottom: 2px solid #cccccc;
    outline: none;
    padding: 6px;
    width: 100%;
}

.login_input:focus {
   border-bottom: 2px solid #2375db;
}

.button_blue {
    background: #25c1c6;
    border-bottom: 2px solid #25c1c6;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 10px;
    padding-bottom: 8px;
    border-radius: 4px;
    font-family: "Roboto-Bold";
    font-size: 14px;
    color: #ffffff;
    cursor: hand;
    cursor: pointer;
    float: right;
    margin-top: -8px;
}

.button_blue_left {
    float: left;
}

.button_blue:after {
    clear: both;
}

.button_blue:hover {
    border-bottom: 2px solid #16557a;
}

.button_none {
    font-family: "Roboto-Bold";
    font-size: 16px;
    color: #006388;
    position: absolute;
    right: 12;
    top: 12;
}

.button_none:hover {
    color: #25c1c6;
    cursor: hand;
    cursor: pointer;
}

.button_blue_light {
    background: #2ee2e8;
    border-bottom: 2px solid #2ee2e8;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 10px;
    padding-bottom: 8px;
    border-radius: 4px;
    font-family: "Roboto-Bold";
    font-size: 14px;
    color: #ffffff;
    cursor: hand;
    cursor: pointer;
    float: right;
    margin-top: -8px;
}

.button_blue_light:after {
    clear: both;
}

.button_blue_light:hover {
    border-bottom: 2px solid #16557a;
}

.error {
    display: none;
    padding: 10px;
    font-family: "SourceSansPro";
    color: #a01313;
    background: #fff4f4;
    margin-bottom: 10px;
    border-radius: 4px;
}

.display {
    display: none;
}

.link_hover:hover {
    cursor: hand;
    cursor: pointer;
    text-decoration: underline;
}

.checkbox {
    display: block;
    position: relative;
    padding-left: 20px;
    padding-top: 5px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #f1f1f1;
    margin-top: 8px;
}

.checkbox:hover input ~ .checkmark {
    background-color: #e1e1e1;
}

.checkbox input:checked ~ .checkmark {
    background-color: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox input:checked ~ .checkmark:after {
    display: block;
}

.checkbox .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.clear {
    clear: both;
}

.content_text_title {
    display: inline-block;
    font-family: "SourceSansPro-Bold";
    font-size: 22px;
    color: #000000;
    padding-right: 10px;
    padding-bottom: 20px;
    width: 50%;
}

.help_title {
    margin-top: 6px;
    background: #e9f9f9;
    padding: 4px;
    padding-left: 6px;
    border-radius: 4px;
    font-family: "SourceSansPro-Bold";
    font-size: 16px;
    color: #006388;
    cursor: hand;
    cursor: pointer;
}

.help_text {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 24px;
}

.display_none {
    display: none;
}

.assessment_form {
    display: inline-block;
    width: 270px;
    padding: 8px;
    padding-left: 10px;
    font-size: 16px;
    margin-bottom: 2px;
    vertical-align: top;
}

.assessment_form_left {
    width: 90px;
    font-family: "SourceSansPro-Bold";
}

.assessment_code {
    letter-spacing: 2px;
    padding: 10px;
    width: 200px;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    border-radius: 10px;
    border: 1px solid #cccccc;
}

.assessment_box_text_bold {
    font-size: 20px;
    font-family: "SourceSansPro-Bold";
}

.assessment_box {
    background: #f1f1f1;
    padding: 10px;
    border-radius: 4px;
    font-family: "SourceSansPro";
}

#assessment_box_code {
    letter-spacing: 2px;
}

.highlight {
    line-height: 44px;
    background: #f1f1f1;
    border-radius: 10px;
    padding: 10px;
    font-family: "Roboto-Bold";
    font-size: 14px;
    color: #006388;
}

.highlight:hover {
    color: #25c1c6;
    cursor: hand;
    cursor: pointer;
}

.note {
    background: #e9f9f9;
    padding: 10px;
    border-radius: 4px;
    font-style: italic;
    color: #006388;
    margin-top: 20px;
}

.public_assessments_title {
    font-family: "Roboto-Regular";
    font-size: 16px;
    text-align: center;
}

.authenticator {
    display: none;
}
