/* CSS Document */
body
{
	background-color: #FFF;
}

#header nav{
	background-color:#0393DA;
	text-transform: uppercase;
    -webkit-box-shadow: 0px 5px 5px -2px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 5px 5px -2px rgba(0,0,0,0.2);
    box-shadow: 0px 5px 5px -2px rgba(0,0,0,0.2);
    font-weight: bold;
    text-align: center;
}
#header .navbar-brand{
	color:#FFF;
	line-height: -moz-block-height;
}
#content{
	margin-top:100px;
	margin-bottom:100px;
}
#frm-login{
	width: 300px;
	margin: 50px auto 25px auto;
}
#frm-login .modal-content{
	border-radius:5px;
	border: 2px solid #0393DA;
}
.modal-header{
	background-color:#FFF;
	color:#FFF;
	font-size:20px;
	text-transform:uppercase;
	font-weight:bold;	
}
.modal-header span{
	margin-right:15px;
}
#frm-login form {
  box-sizing: border-box;
  width: 100%;
}
#frm-login form h1 {
  box-sizing: border-box;
  padding: 20px;
}
input {
    padding: 6px 12px !important;
}

#frm-login input:focus, input:valid {
  box-shadow: none;
  outline: none;
  background-position: 0 0;
}
#frm-login input:focus::-webkit-input-placeholder, input:valid::-webkit-input-placeholder {
  visibility: visible !important;
}
#frm-login button {
  border: none;
  background: #0393DA;
  cursor: pointer;
  padding: 6px;
  width: 150px;
  color: #FFF;
  display: inherit;
  margin: 20px auto;
  box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.2);
}
#frm-login button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.2);
}
.modal-body
{
	max-height: 450px;
	overflow: auto;
}
footer{
	background-color:#0393DA;
	/* text-transform: uppercase; */
    font-weight: bold;
    text-align: center;
	padding:40px;
	color:#00000;
}

button, input, optgroup, select, textarea {
    color: #000;
}

.text-red
{
	color: red;
}

@media only screen and (max-width: 768px) and (min-width: 240px)
{
	.navbar-brand
	{
		padding: 5px;
	}
}