﻿.main-container, html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0px;
    margin: 0px;
    background-color: #f4f4f4;
}

.main-container {
    display: flex;
    flex-direction: column;
}

.topContainer {
    display: flex;
    background-color: #02344a;
    height: 80px;
    border-bottom: #06a7ea 3px solid;
}

.middleContainer {
    flex: 1;
    width: 100%;
    background: url('../Images/Background.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

    .middleContainer h1 {
        width: 100%;
        position: absolute;
        bottom: 75px;
        font-family: cursive;
        color: #fff;
        text-align: center;
    }

.bottomContainer {
    background-color: #02344a;
    color: white;
    display: flex;
    height: 25px;
}

.topLeft {
    flex: 1;
    text-align: center;
    margin: 10px;
}

.topMiddle {
    font-size: 15px;
    color: #fff;
    font-family: cursive;
    text-align: left;
    flex: 6;
}

.topRight {
    flex: 4;
    font: 15px/1.5 Arial, Helvetica,sans-serif;
    margin: 10px;
}

.bottomLeft {
    margin: 10px;
    flex: 1;
}

.bottomMiddle {
    margin: 10px;
    flex: 4;
}

.bottomRight {
    margin: 10px;
    flex: 1;
}

.highlight {
    color: #06a7ea;
    font-weight: bold;
}

.Login {
    position: fixed;
    top: 20px;
    right: 15px;
    width: 32px;
    height: 32px;
}

.LoginName {
    position: fixed;
    top: 2px;
    right: 8px;
    height: 22px;
    color: white;
}

.MenuBar {
    float: left;
    display: inline;
    overflow: hidden;
}

    .MenuBar a {
        float: left;
        display: block;
        color: #f2f2f2;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 17px;
    }

.active {
    color: #06a7ea !important;
    font-weight: bold;
}

.MenuBar .icon {
    display: none;
}

.DropDownMenu {
    float: left;
    overflow: hidden;
}

    .DropDownMenu .DropBtn {
        font-size: 17px;
        border: none;
        outline: none;
        color: white;
        padding: 16px 16px;
        background-color: transparent;
        text-transform: uppercase;
        font-family: inherit;
        margin: 0;
    }

.DropDownMenu-Content {
    display: none;
    position: absolute;
    background-color: #02344a;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .DropDownMenu-Content a {
        float: none;
        color: white;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

.MenuBar a:hover, .DropDownMenu:hover .DropBtn {
    background-color: #555;
    color: white;
    border-radius: 20%;
}

.DropDownMenu-Content a:hover {
    background-color: #ddd;
    color: black;
}

.DropDownMenu:hover .DropDownMenu-Content {
    display: block;
}

.LoginPanel {
    width: 100%;
    height: 90%;
    font: 13px/20px "Lucida Grande", Tahoma, Verdana, sans-serif;
    color: #404040;
}

.LoginForm {
    margin: 0 auto;
    margin-top: 150px;
    display: none;
    position: relative;
    padding: 2px 20px 20px;
    width: 340px;
    height: 250px;
    background: white;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
}

.FrgtForm {
    margin: 0 auto;
    margin-top: 100px;
    display: none;
    position: relative;
    padding: 2px 20px 20px;
    width: 340px;
    height: 320px;
    background: white;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
}

* {
    box-sizing: border-box;
}

.LoginForm h2 {
    padding: 0px;
    margin-top: 5px;
    color: #02344a;
}

.MyInputContainer {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 15px;
}

.icon {
    padding: 10px;
    background: #02344a;
    color: white;
    min-width: 50px;
    text-align: center;
}

.MyInputField {
    width: 100%;
    padding: 10px;
    outline: none;
}

    .MyInputField:focus {
        border: 2px solid dodgerblue;
    }

.FlatButton {
    background-color: #02344a;
    color: #06a7ea;
    padding: 15px 20px;
    font-size: large;
    font-weight: bold;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

    .FlatButton:hover {
        opacity: 1;
    }

#dvTabCntl {
    width: 100%;
    height: 100%;
}

    #dvTabCntl iframe {
        width: 100%;
        height: 100%;
    }
    
@media screen and (max-width: 600px) {
    .main-container {
        display: flex;
        flex-direction: column;
        overflow: scroll;
    }

    .glowText {
        text-align: center;
    }

    .topContainer {
        flex: 2;
        display: flex;
        flex-direction: column;
    }

    .clientLogo {
        margin-top: 25px;
    }

    .middleContainer {
        flex: 2;
        margin-left: 0px;
        margin-right: 10px;
        background-color: blueviolet;
    }

    .bottomContainer {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .topLeft {
        text-align: center;
        top: 0px;
        flex: 1;
    }

    .topMiddle {
        margin-top: -35px;
        margin-bottom: 0px;
        text-align: center;
        flex: 1;
    }

    .topRight {
        margin: 0px;
        flex: 1;
    }

    .bottomLeft {
        background-color: cornflowerblue;
        margin: 10px;
        flex: 1;
    }

    .bottomMiddle {
        background-color: crimson;
        margin: 10px;
        flex: 1;
    }

    .bottomRight {
        background-color: lightyellow;
        margin: 10px;
        flex: 1;
    }

    .MenuBar {
        margin-top: -20px;
    }

        .MenuBar a:not(:first-child), .DropDownMenu .DropBtn {
            display: none;
        }

        .MenuBar a.icon {
            float: right;
            display: block;
        }

        .MenuBar.responsive {
            background-color: #02344a;
            position: relative;
        }

            .MenuBar.responsive .icon {
                position: absolute;
                right: 0;
                top: 0;
            }

            .MenuBar.responsive a {
                float: none;
                display: block;
                text-align: left;
            }

            .MenuBar.responsive .DropDownMenu {
                float: none;
            }

            .MenuBar.responsive .DropDownMenu-Content {
                position: relative;
            }

            .MenuBar.responsive .DropDownMenu .DropBtn {
                display: block;
                width: 100%;
                text-align: left;
            }

    .LoginForm {
        margin-top: 50px;
        margin-bottom: 15px;
    }
}
