﻿@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:400,700|Material+Icons);

/*@font-face {
    font-family: Roboto;
    src: url(Roboto-Regular.ttf);
}*/
body, html
{
    font-family: 'Roboto';
    padding: 0px;
    margin: 0px; /*background: linear-gradient(#ffffff, #9ea3c4);*/
}
.bgImgLogin
{
    background: url('Login-campus-bgimg.jpg') no-repeat center fixed;
    background-size: 100% 100%;
    height: 100%;
}
.bgImgLogin::before
{
    background-color: rgba(96, 102, 97, 0.81);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
}

/****** LOGIN MODAL ******/
.loginmodal-container
{
    padding: 0px;
    max-width: 350px;
    width: 100% !important;
    background-color: #F7F7F7;
    margin: 20px auto;
    border-radius: 2px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    font-family: roboto;
}
.modal_heading
{
    background-color: #1b5387;
    padding: 15px;
    color: White;
}
.LoginForm
{
    padding: 0px 30px 30px;
}
.loginmodal-container h1
{
    text-align: center;
    font-size: 1.8em;
    font-family: roboto;
}
h5
{
    font-size: 18px;
    font-family: roboto;
}
.loginmodal-container input[type=submit]
{
    width: 100%;
    display: block;
    margin-bottom: 10px;
    position: relative;
}

.loginmodal-container input[type=text], input[type=password], .loginmodal-container select
{
    height: 44px;
    font-size: 14px;
    width: 100%;
    outline: 0px;
    margin-bottom: 10px;
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-top: 1px solid #c0c0c0; /* border-radius: 2px; */
    padding: 0 8px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.loginmodal-container input[type=text]:hover, input[type=password]:hover
{
    border: 1px solid #b9b9b9;
    border-top: 1px solid #a0a0a0;
    -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.loginmodal
{
    text-align: center;
    font-size: 14px;
    font-family: 'Arial' , sans-serif;
    font-weight: 700;
    height: 36px;
    padding: 0 8px; /* border-radius: 3px; */ /* -webkit-user-select: none;   user-select: none; */
}

.loginmodal-submit
{
    /* border: 1px solid #3079ed; */
    border: 0px;
    color: #fff;
    text-shadow: 0 1px rgba(0,0,0,0.1);
    background-color: #338f31;
    padding: 10px 0px;
    font-family: roboto;
    font-size: 18px; /* background-image: -webkit-gradient(linear, 0 0, 0 100%,   from(#4d90fe), to(#4787ed)); */
}

.loginmodal-submit:hover
{
    /* border: 1px solid #2f5bb7; */
    border: 0px;
    text-shadow: 0 1px rgba(0,0,0,0.3);
    background-color: #137311; /* background-image: -webkit-gradient(linear, 0 0, 0 100%,   from(#4d90fe), to(#357ae8)); */
}

.loginmodal-container a
{
    text-decoration: none;
    color: #666;
    font-weight: 400;
    text-align: center;
    display: inline-block;
    opacity: 0.6;
    transition: opacity ease 0.5s;
}

.login-help
{
    font-size: 12px;
}

hr
{
    margin-top: 10px;
    margin-bottom: 10px;
    border: 0;
    border-top: 1px solid #eee;
}
.OverLay
{
    width: 30%;
    left: 35%;
    right: auto;
    top: 15%;
    min-height: 400px;
    position: absolute;
    z-index: 999;
    background-color: White;
    border: 2px solid black;
}
.CloseBtn
{
    text-align: right;
    cursor: pointer;
    padding-right: 10px;
    width: 100%;
    display: inline-block;
    font-size: 18px;
    color: Red;
}

.OverLay > h4
{
    padding: 10px;
    color: White;
    background-color: #1b5387;
    margin: 0px;
    border-bottom: 1px solid gray;
}
.OverLay > p
{
    font-size: 12px;
    padding: 5px;
}
@media (max-width: 669px)
{

    .OverLay
    {
        width: calc(100% - 20px);
        left: 10px;
        right: 10px;
        height: 500px;
    }
}
