﻿body {
    padding-top: 215px;
    background: url('../Content/Images/Background1.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.panel-login {
    border-color: #ccc;
    -webkit-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2);
}

    .panel-login > .panel-heading {
        color: #00415d;
        background-color: #fff;
        border-color: #fff;
        text-align: center;
    }

        .panel-login > .panel-heading a {
            text-decoration: none;
            color: #666;
            font-weight: bold;
            font-size: 15px;
            -webkit-transition: all 0.1s linear;
            -moz-transition: all 0.1s linear;
            transition: all 0.1s linear;
        }

            .panel-login > .panel-heading a.active {
                color: #00415d;
                font-size: 18px;
            }

        .panel-login > .panel-heading hr {
            margin-top: 10px;
            margin-bottom: 0px;
            clear: both;
            border: 0;
            height: 1px;
            background-image: -webkit-linear-gradient(left,rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.15),rgba(0, 0, 0, 0));
            background-image: -moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
            background-image: -ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
            background-image: -o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
        }

    .panel-login input[type="text"], .panel-login input[type="email"], .panel-login input[type="password"] {
        height: 45px;
        border: 1px solid #ddd;
        font-size: 16px;
        -webkit-transition: all 0.1s linear;
        -moz-transition: all 0.1s linear;
        transition: all 0.1s linear;
        max-width: 100%;
    }

    .panel-login input:hover,
    .panel-login input:focus {
        outline: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        border-color: #ccc;
        border-color: #9ecaed;
        box-shadow: 0 0 10px #9ecaed;
    }


.btn-login {
    background-color: #59B2E0;
    outline: none;
    color: #fff;
    font-size: 14px;
    height: auto;
    font-weight: normal;
    /*padding: 14px 0;*/
    text-transform: uppercase;
    border-color: #59B2E6;
}

    .btn-login:hover,
    .btn-login:focus {
        color: #fff;
        background-color: #53A3CD;
        border-color: #53A3CD;
    }

.forgot-password {
    text-decoration: underline;
    color: #888;
}

    .forgot-password:hover,
    .forgot-password:focus {
        text-decoration: underline;
        color: #666;
    }

.btn-register {
    background-color: #59B2E0;
    outline: none;
    color: #fff;
    font-size: 14px;
    height: auto;
    font-weight: normal;
    padding: 14px 0;
    text-transform: uppercase;
    border-color: #59B2E6;
}

    .btn-register:hover,
    .btn-register:focus {
        color: #fff;
        background-color: #53A3CD;
        border-color: #53A3CD;
    }

    
.OverlayEffect {
    background-color: black;
    filter: alpha(opacity=70);
    opacity: 0.7;
    width: 100%;
    height: 100%;
    z-index: 1001;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
}

.ShowModal {
    top: 5%;
    /*margin-left: 29%;
    margin-right: 29%;*/
    z-index: 1000;
    position: absolute;
    text-align: center;
    width: 38%;
    border: 1px solid #A5AFC1;
    border-radius: 8px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    -webkit-box-shadow: 0 0 20px #A5AFC1;
    -moz-box-shadow: 0 0 20px #A5AFC1;
    box-shadow: 0 0 20px #A5AFC1;
    margin-top: 2em;
    display: inline-block;
}

.HideModal {
    display: none;
}

.ButtonAsLink{
   background-color:transparent;
   border:none;
   cursor:pointer;
   text-decoration:underline;
   padding: 0px;
   color: red;
   text-transform: uppercase;
   box-shadow:none;
 }

.ButtonAsLink:hover {
    box-shadow:none!important;
}