﻿

.overlay {
    position: fixed;
    display: none;
    /* color with alpha channel */
    background-color: rgba(0, 0, 0, 0.7); /* 0.7 = 70% opacity */
    /* stretch to screen edges */
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

#loginform {
    z-index: 9000;
    width: 500px;
    height: 250px;
    /*margin-top:100px;*/
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px #424242;
    box-sizing: border-box;
    font-family: helvetica;
    visibility: hidden;
    display: none;
    background-color: #CBCFCF;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.head_log {
    background-image: url('http://industries.cg.gov.in/msme/App_Themes/blue/images/login_img.png');
    background-repeat: no-repeat;
    background-position: center center;
    /*background-color:#1A9DA2;*/
    background-color: #006F93;
    height: 50px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.swl_link {
    background-color: #006F93;
    border-radius: 5px;
}

#loginform #close_login {
    width: 15px;
    height: 15px;
}

#loginform p {
    margin-top: 40px;
    font-size: 22px;
    color: #E6E6E6;
}

#loginform #login {
    width: 250px;
    height: 40px;
    border: 2px solid silver;
    border-radius: 3px;
    padding: 5px;
}

#loginform #password {
    margin-top: 5px;
    width: 250px;
    height: 40px;
    border: 2px solid silver;
    border-radius: 3px;
    padding: 5px;
}

#loginform #dologin {
    margin-left: -5px;
    margin-top: 10px;
    width: 250px;
    height: 40px;
    border: none;
    border-radius: 3px;
    color: #E6E6E6;
    background-color: grey;
    font-size: 20px;
}
/****************/
.button-link {
    padding: 5px 15px;
    background: #006a87;
    color: #FFF;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: solid 1px #25333b;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    /*user-select:none;*/
}
.button-link:hover {
    color:#d9eded;
    border: solid 1px #2A4E77;
    text-decoration: none;
}
.button-link:active {
    -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
    background: #2E5481;
    border: solid 1px #203E5F;
    color:White;
}
/*================================*/