/*
For pages based on the login page i.e. they will have a similar layout with
company logos etc.
*/


/*-------------------Mobile view (320px)----------------------------------*/
html, body, .wrapper {
    height: 100%;
    width: 100%;
}
.loginPageContainer {
    width: 90%;
    height: 100%;
    display: flex;
    margin-left: 5%;
    margin-right: 5%;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.companyLogo {
    display: flex;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}
.systemLogo {
    max-width: 370px;
    margin: 0 auto;
    width: 100%;
    display: block;
    padding-top: 50px;
}
h1.logoText {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0px;
    color: #1f3c55;
}

#helpButton {
    top: 10px;
}
.logInPageButton {
    font-weight: normal;
    margin-top: 20px;
}
label {
    font-size: 16px;
    margin-top: 5px;
    display: block;
}
input[type="password"] {
    width: 100%;
    height: 35px;
    margin-top: 5px;
    box-sizing: border-box;
    font-size: 16px;
}
a {
    text-decoration: underline;
}
.middleSection{
    max-width: 422px;
}
/*-------------------Tablet view----------------------------------*/
@media screen and (min-width: 768px) {
    .middleSection {
        display: flex;
        justify-content: center;
    }
    /*For some reason on desktop view this was too far to the left*/
    #tooltip.left.right:after /* triangle decoration */ {
        margin-left: -10px;
    }
}
/*If desktop view and tall enough, show the PRE ENROLMENT text*/
@media screen and (min-width: 768px) and (min-height: 600px) {
    .companyLogo {
        max-width: 340px;
        margin: 0 auto;
        width: 100%;
        display: block;
        padding-top: 50px;
        padding-bottom:30px;
    }
    h1.logoText {
        display: block;
        margin-bottom:20px;
        font-size: 35px;
    }
}

/*If desktop view and screen not tall enough, make it scrollable*/
@media screen and (min-width:768px) and (max-height: 450px) {
    .loginPageContainer {
        display: block;
    }
    /*If height is low on desktop it moves to the right, this stops it*/
    #tooltip:after /* triangle decoration */ {
        margin-left: -10px;
    }
}
