﻿/* This two css properties remove the background coloring in Chrome and FireFox of password fields */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
}
input {
    filter: none;
}

* {
    font-family: Roboto, Arial, Helvetica, sans-serif !important;
    font-size: 15px;
    text-align: left;
}

a {
    display: inline-block;
    text-decoration:none;
}

#wrapper {
    height: 100%;
    width: 100%;
    background-color: white;
}

#header {
    height: 15vh;
    width: 100%;
    margin: 2% 0;
    background: white url(graphics/loginlogo.png) no-repeat center center;
    background-size: auto 100%;
}

.LoginTitle {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: normal;
    display: block;
}

.LoginInput {
    width: 100%;
}
.LoginInput::placeholder {
    color: grey;
}

.title1 {
    color: white;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: normal;
}

.title2 {
    color: rgb(191, 197, 223);
    font-size: 20px;
    font-weight: bold;
    letter-spacing: normal;
}

.highlight {
    color: white;
}

#row1 {
    width: 100%;
    height: 90vh;
    position: fixed;
    background: linear-gradient(0deg,rgba(0, 0, 0,0.6),rgba(0, 0, 0,0.6)), url("graphics/loginbackground.png");
}

/* 1360 is de breedte van loginbackground.png */
@media screen and (min-width: 1360px) {
    #row1 {
        background-size: 100%;
    }
}

#loginwrapper {
    margin-top:15vh;
}

#loginframe {
    height: auto;
    width: 500px;
    max-width: 90vw;
    margin-top: 0 !important;
    background-color: white;
    color: black;
    border-radius: 10px;
}

#separator {
    padding: 2px 20%;
}
#separator div {
    height:1px;
    background-color:rgb(189,189,189);
}

.loginheader {
    display:none;
}

.bodytextinline {
    font-size: 15px;
}

.bodytexttitle {
    font-weight: bold;
    font-size: 15px;
    color: rgb(113, 126, 140);
    float: left;
    text-align: left;
}

#footer {
    /*height: 370px;*/
    width: 100%;
    position: fixed;
    overflow: hidden;
    background-color: white;
    height:66px;
    bottom:0px;
    color:#006939;
    font-size:14px;
    padding-top:1em;
}

#footer .bodytext {
    margin-top:1rem;
}

#footer a {
    color: black;
}

.staffrights {
    float: left;
    height: 50px;
    margin-left:3rem;
}

.staffrights .privacy {
    display:none;
}

#stafflogo {
    height:40px;
    margin-right:1em;
    margin-top:-0.75rem;
}

#privacystatement {
    float: right;
    height: 50px;
    margin-right: 60px;
}

/* Bij breedte 860 gaan de teksten onderin wrappen. Hide #privacystatement en toon ze onder elkaar */
@media screen and (max-width: 860px) {
    .staffrights.rights {
        margin-top:-1rem;
    }
    .staffrights.rights > .bodytext {
        margin-top:0.75rem !important;
    }
    .staffrights .privacy {
        display:block;
    }
    #privacystatement {
        display:none;
    }
}

/* Bij breedte 860 gaan de teksten onderin wrappen. Hide #privacystatement en toon ze onder elkaar */
@media screen and (max-width: 500px) {
    .staffrights {
        margin-left:5rem;
    }
    .staffrights.logo {
        margin-left: 1px !important;
        position: absolute !important;
    }
}

/* overrule */
.loginform input:not([type="checkbox"]) {
    margin: 1rem 0 0 0 !important;
}
.loginform {
    border:none;
    padding:3em;
    border-radius:0;
}
.loginform a {
    margin-top: 4px !important;
    color: black;
    display:block;
    font-size:small!important;
}

.loginhelp{
    padding:0;
    margin-top:10px;
    display:none;
}

.loginform .btn {
    padding: 0.1rem 2rem;
    background-color: black;
    color: white;
    width: 100%;
    height: auto !important;
    font-style: normal;
    font-size: 1.2em;
}

.loginintro, .loginprompt {
    display: none !important;
}