/* ######################################################## */
/* Login style sheet                                        */
/* ######################################################## */
@charset "UTF-8";

/****************************
* Form
****************************/

input[type=text].floginOK, input[type=password].floginOK
{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

input[type=text].floginErr, input[type=password].floginErr
{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid red;
    box-sizing: border-box;
}

input[type=submit].blogin
{
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    cursor: pointer;
    width: 100%;
}

input[type=submit].blogin:hover
{
    opacity: 0.8;
}

input[type=submit].btnDisabled
{
    background-color: #D1D1D1;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    width: 100%;
}

label.login
{
	font-weight: bold;
}

.messError
{
	color: red;
    text-align: center;
}

.imgcontainer
{
    text-align: center;
    margin: 10px;
    position: relative;
}

img.loginLogo
{
    border-radius: 50%;
}

.container
{
    padding: 16px;
    padding-top: 0px;
}

span.psw
{
    float: right;
    padding-top: 16px;
}

div.login
{
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
}

.loginContent
{
    background-color: #fefefe;
    margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    max-width: 600px;
    cursor: auto;
}

a.loginClose
{
	position: absolute;
	right: 8px;
	top: 0;
    color: #000;
    font-size: 35px;
    font-weight: bold;
}

a.loginClose:hover
{
	color: red;
	text-decoration: none;
	cursor: pointer;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)}
  to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px)
{
    span.psw
    {
       display: block;
       float: none;
    }
    .cancelbtn
    {
       width: 100%;
    }
}
