﻿/* This StyleSheet contains custom styles for this project */

body {
    overflow: auto;
}

@media (min-width: 1000px) {

    .main-area {
        padding: 0px;
        width: 1000px;
        height: 703px;
        margin: 20px auto;
        background-image: url("../images/Welcome/Background.png");
    }

    .form-wrap {
        margin: 25px 0px 0px 590px !important;    
    }
}

.form-wrap {
    width: 320px;
    margin: 25px auto;
}

    .form-wrap form {
        padding: 40px;
        border-radius: 4px;
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }

    .form-wrap .logo {
        margin-bottom: 30px;
    }

        .form-wrap .logo img {
            width: 240px;
        }

label {
    font-weight: normal;
}

.btn {
    background-color: #005294;
    color: #ffffff !important;
}

.background-line {
    text-align: center;
    position: relative;
    z-index: 1;
}

    .background-line:before {
        border-top: 2px solid #dfdfdf;
        content: "";
        margin: 0 auto;
        /* this centers the line to the full width specified */
        position: absolute;
        /* positioning must be absolute here, and relative positioning must be applied to the parent */
        top: 50%;
        left: 0;
        right: 0;
        bottom: 0;
        width: 95%;
        z-index: -1;
    }

    .background-line span {
        /* to hide the lines from behind the text, you have to set the background color the same as the container */
        background: #ffffff;
        padding: 0 15px;
    }

label {
    font-size: 1.2em;
}

.form-control {
    font-size: 1.2em;
}

/* ---------------------------------------------------------------------------*/
