﻿/*
CSS Name: Login.css --------- Desktop & Tablet & Mobile phone support
File: Navigation CSS
Author: (JP)
Author URI: http://www.
Licence:Taran Comprint 
*/
body {
    /*padding-top: 15px;*/
    padding-bottom: 15px;
    background-color: #eee !important;
}



.form-login {
    max-width: 330px;
    padding: 15px;
    margin: 0 auto;
}

    .form-login .form-login-heading,
    .form-login .checkbox {
        margin-bottom: 10px;
    }

    .form-login .checkbox {
        font-weight: normal;
    }


    .form-login .form-control {
        position: relative;
        font-size: 16px;
        height: auto;
        padding: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        .form-login .form-control:focus {
            z-index: 2;
        }

    .form-login input[type="text"] {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .form-login input[type="password"] {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

.imgStratch {
    /*height: 486px;
    width: 800px;*/
    height: 100%;
    width: 100%;
}

.blink_me {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@-moz-keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

.overlay {
    text-align: center;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 100;
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -o-transform: scale(1.8);
    transform: scale(1.8);
}

    .overlay.active {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

#BorwseMsg {
    position: absolute;
    /*border: 1px solid blue;
            width: 100px;
            height: 50px;*/
    top: 30%;
    left: 40%;
    margin-top: -25px;
    margin-left: -50px;
    color: white;
}

.blurEffect {
    filter: blur(5px);
    -webkit-filter: blur(5px);
}

.imageChrome {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.TF {
    /*padding-left: 60px;*/
    background: url(../Images/Icons/TrueFalse.png) no-repeat;
    background-size: cover;
    height: 45px;
    width: 30px;
    display: inline-block;
    margin: -15px 5px;
}

.true {
    background-position: -5px;
}

.false {
    background-position: -35px;
}
