﻿
html {
    height: 100%;
}

body {
    background-color: #4f2d7f;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    height: 100vh;
}

#BackgroundImageContainer {
    height: inherit;
    width: 60%;
    background-image: url('../../../GTImages/GTLoginPageBackground.png');
    background-repeat: no-repeat;
    background-size: cover;
}

#LogInDetailsContainer {
    width: 40%;
    height: inherit;
    text-align: center;
}

#GTHeader {
    color: #ffffff;
    font-size: 1.5em;
    font-family: arial;
    font-weight: normal;
    margin-top: 30%;
    margin-right: 0.3em;
    margin-left: 0.3em;
}

hr {
    /*margin-top: 5%;*/
    margin-left: 10%;
    margin-right: 10%;
    overflow: visible; /* For IE */
    height: 30px;
    border-style: solid;
    border-color: #ffffff;
    border-width: 1px 0 0 0;
    border-radius: 20px;
}

    hr::before {
        display: block;
        content: "";
        height: 30px;
        margin-top: -31px;
        border-style: solid;
        border-color: #ffffff;
        border-width: 0 0 1px 0;
        border-radius: 20px;
    }

#LogInHeaders {
    font-size: 1.2em;
    font-weight: normal;
    font-family: Arial;
    color: #ffffff;
    margin-bottom: 30px;
    margin-top: -21px;
}

.form-element {
    width: 300px;
    height: 40px;
    margin: 0 auto;
    font-size: 1em;
    padding: 0.5em;
    border-radius: 1em;
    font-family: sans-serif;
}

input {
    width: 100%;
    height: 100%;
    font-size: inherit;
    padding-left: 0.8rem;
    padding-right: 0.5rem;
    margin: 0.1em 0.2em;
    /* the following ensures they're all using the same box-model for rendering */
    -moz-box-sizing: content-box; /* or `border-box` */
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}


    input[type="text"], input[type="password"] {
        background-color: rgb(233, 229, 223);
        border: none;
    }

        input[type="text"]:hover, input[type="password"]:hover {
            background-color: rgb(222, 216, 207);
        }

        input[type="text"]:active, input[type="password"]:active {
            background-color: rgb(222, 216, 207);
        }

.btn-login {
    background-color: #9BD732;
    border: none;
    cursor: pointer;
}

    .btn-login:active {
        content: "";
        background-color: rgb(215,239,173);
        color: #000000;
        transition: all 0.5s;
    }

    .btn-login:hover {
        background: rgb(195,231,132);
        letter-spacing: 1px;
        -webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
        -moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
        box-shadow: 5px 40px -10px rgba(0,0,0,0.57);
        transition: all 0.4s ease 0s;
    }

/*Placeholder align*/
::-webkit-input-placeholder {
    color: #000000;
}

:-moz-placeholder { /* Firefox 18- */
    color: #000000;
}

:-ms-input-placeholder {
    color: #000000;
}

#lblMessage {
    font-size: 14pt;
    padding-left: 1.8rem;
}

/*Added for Logo*/
.LogoContainer {
    width: 100%;
    height: 15%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

#GTLogoImg {
    margin-left: 0.5em;
}

#AboutGTHeader {
    color: #4f2d7f;
    margin-left: 1em;
    font-family: Arial;
}

.loading {
    font-family: Arial;
    font-size: 10pt;
    display: none;
    position: fixed;
    z-index: 999;
    left: 80%;
    bottom: 30%;
    /*added for positioning of loader*/
    transform:translateX(-40%);
}

/*Minimize Window for Internet Explorer*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (max-width:992px) {
    #GTHeader {
        margin-top: 15%;
    }
}

@media all and (max-width:992px) {
    #BackgroundImageContainer {
        display: none;
    }

    #divCaptcha {
        position: relative;
        bottom: -1px;
        left: 1px;
    }


    #LogInDetailsContainer {
        width: 100%;
        height: inherit;
        text-align: center;
    }

    #GTHeader {
        font-size: 2em;
        /*Minimize window for Chrome*/
        margin-top: 16%;
    }

    @-moz-document url-prefix() {
        /*Minimize window for Mozila*/
        #GTHeader {
            margin-top: 20%;
        }
    }

    #LogInHeaders {
        font-size: 1.5em;
    }

    ::-webkit-input-placeholder {
        font-size: 1em;
        color: #000000;
    }

    :-moz-placeholder { /* Firefox 18- */
        font-size: 1em;
        color: #000000;
    }

    :-ms-input-placeholder {
        font-size: 1em;
        color: #000000;
    }

    .form-element {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #lblMessage {
        font-size: 14pt;
        padding-left: 0;
    }

    /*Added for Logo*/
    .LogoContainer {
        width: 100%;
        height: 10%;
    }

    #GTLogoImg {
        width: inherit;
        margin-left: 0;
    }

    .loading {
        left: 50%;
        bottom: 40%;
    }
}

@media only screen and (min-width: 992px) {
    #divCaptcha {
        position: relative;
        bottom: 16px;
        left: 12px;
    }
}
