﻿html {
    height: 100%;
    width: 100%;
    margin: 0;
}

body {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #000;
    background: #fff;
}

* {
    box-sizing: border-box;
}

.main-container {
    height: 100%;
    width: 100%;
    position: relative;
    margin: 0;
    background-image: url("../images/main-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

    .main-container:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(41, 62, 69, 0.3);
    }

.main-content {
    position: relative;
    min-width: 420px;
    width: 40%;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 40px 2% 80px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 20px 2px rgba(0,0,0,.2);
    -moz-box-shadow: 0 0 20px 2px rgba(0,0,0,.2);
    box-shadow: 0 0 20px 2px rgba(0,0,0,.2);
    overflow: hidden;
    background: #fff;
    background-image: url("../images/circuit.png");
    background-repeat: no-repeat;
    background-size: 60% auto;
    background-position: 100% 100%;
}

    .main-content .login-logo {
        text-align: center;
        padding: 30px 0;
    }

        .main-content .login-logo img {
            width: 45%;
            height: auto;
        }

    .main-content input.loginBtnDiv {
        background: rgb(50, 104, 232);
        color: #fff;
        margin: 20px 0 0 0;
        height: 50px;
        line-height: 50px;
        width: 100%;
        border: 0px;
        border-radius: 8px;
        cursor: pointer;
    }

        .main-content input.loginBtnDiv.secondary {
            color: rgb(50, 104, 232);
            background: #fff;
            box-sizing: border-box;
            border: 1px solid rgb(50, 104, 232);
        }

    .main-content #splitBetweenSection {
        display: block;
        height: 40px;
        line-height: 40px;
        position: relative;
        text-align: center;
    }

        .main-content #splitBetweenSection:before {
            content: '';
            height: 1px;
            border-top: 1px solid #ccc;
            width: 100%;
            display: block;
            position: absolute;
            top: 20px;
        }

        .main-content #splitBetweenSection span {
            display: inline-block;
            position: relative;
            z-index: 1;
            background: #fff;
            padding: 0 10px;
        }


        .main-content #loginViaADBtn .vendor-logo {
            position: relative;
            vertical-align: top;
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
            height: 100%;
            width: 100%;
            background-color: #0094d9;
            color: #fff;
        }

            .main-content #loginViaADBtn .vendor-logo.default {
                background-image: none !important;
            }

            .main-content #loginViaADBtn .vendor-logo #defaultContent {
                display: none;
                position: relative;
                height: inherit;
                line-height: inherit;
                text-align: center;
            }

                .main-content #loginViaADBtn .vendor-logo #defaultContent .icon {
                    display: inline-block;
                    height: inherit;
                    width: 30px;
                    text-align: center;
                    line-height: 52px;
                    font-size: 1.5em;
                }

                .main-content #loginViaADBtn .vendor-logo #defaultContent .text {
                    position: relative;
                    display: inline-block;
                    height: inherit;
                    line-height: inherit;
                    vertical-align: top;
                    font-size: 1.2em;
                }

            .main-content #loginViaADBtn .vendor-logo.default #defaultContent {
                display: block;
                color: #fff !important;
            }

    .main-content #urlAsTextContainer {
        color: #434343;
        position: relative;
        height: 40px;
        line-height: 40px;
        padding: 0 50px 0 15px;
        display: block;
        background: #eee;
    }

        .main-content #urlAsTextContainer #enteredUrlValue {
            position: relative;
            display: block;
            width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .main-content #urlAsTextContainer #editUrlBtn {
            position: absolute;
            right: 0;
            top: 0;
            height: 40px;
            line-height: 40px;
            width: 40px;
            text-align: center;
            color: #fff;
            background: #3268e8;
            cursor: pointer;
        }

            .main-content #urlAsTextContainer #editUrlBtn i {
                color: #fff;
                background: transparent;
                height: inherit;
                line-height: inherit;
                font-size: 1.2em;
            }

    .main-content #loginViaADBtn, .main-content #loginViaADBtn:hover, .main-content #loginViaADBtn:visited, .main-content #loginViaADBtn:active {
        display: block;
        position: relative;
        height: 50px;
        line-height: 50px;
        width: 100%;
        border-radius: 8px;
        cursor: pointer;
        text-align: center;
        border: 1px solid #3268e8;
        overflow: hidden;
        background: rgb(50, 104, 232);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        color: #3268e8;
        font-size: 16px;
    }

    .main-content .button-container.has-icon {
        position: relative;
        background: #ffffff;
        background-repeat: no-repeat;
        background-size: 45px 45px;
        background-position: 5px 2px;
        border-radius: 8px;
    }

        .main-content .button-container.has-icon input[type="submit"] {
            background: transparent !important;
        }
