/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Sep 2, 2016, 9:01:16 AM
    Author     : Bo
*/

#loginformcontainer {
    z-index: 101;
    position: relative;
    display: block;
    box-sizing: border-box;
    /*background-color: rgba(179, 179, 179, 1);*/
    background-color: whitesmoke;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);    
    /*posistion horizontal*/
    margin: auto;   
}

#loginformcontainer img
{
   outline:none !important;
   border: none !important;
}

/*TABLE*/
#loginformcontainer table {    
    border-collapse:collapse;
    border:0px;
    border-spacing: 0px;
    border-right-style: none;
    border-left-style: none;
    border-bottom-style: none;
    border-top-style: none;
    border-right-width: 0px;
    border-left-width: 0px;
    border-bottom-width: 0px;
    border-top-width: 0px;    
    outline: 0;    
    width: 100%;
    box-sizing: border-box;
}

#loginformcontainer table.human {
    background: #f2f2f2;
    margin: 0 0 1em;
}

#loginformcontainer table.commands {    
    background-color: transparent;
    margin: 1em 0 1em;    
    font-size: 1em;  
    width: 100%;    
}

#loginformcontainer table td.human {  
    text-align: center;
}
/*TABLE*/


#loginformcontainer label {  
    outline: 0;
    background: transparent;
    width: auto;
    border: 0;
    /*margin: 0 0 1em;
    padding: 1em;*/
    box-sizing: border-box;
    font-size: 1em;
}

#loginformcontainer input {  
    outline: 0;
    /*background: #f2f2f2;*/
    background: white;
    width: 100%;
    border: 0;
    margin: 0 0 1em;
    padding: 0.7em;
    box-sizing: border-box;
    font-size: 1em;
}

#loginformcontainer input[type="checkbox"] {      
    background: transparent;
    width: auto;    
    box-sizing: border-box;
    cursor: pointer;
    margin: 0em;
    padding: 0em;
}

#loginformcontainer button {
    text-transform: uppercase;
    outline: 0;
    background: #4CAF50;
    width: 100%;
    border: 0;
    padding: 0.7em;
    color: #FFFFFF;
    font-size: 1em;
    -webkit-transition: all 0.3 ease;
    transition: all 0.3 ease;
    cursor: pointer;
}

#loginformcontainer button:hover, #loginformcontainer button:active, #loginformcontainer button:focus {
      background: #43A047;
}

#loginformcontainer .messagestyle {
    margin: 1em 0 0;
    color: black;
    font-size: 1em;  
    width: 100%;
    text-align: center;    
}

#loginformcontainer a {        
    color: #4CAF50;
    text-decoration: none;    
}

#loginformcontainer .register {
    display: none;
}

#loginformcontainer .reset {
    display: none;
}

.createuserheadline, .loginheadline, .resetpassheadline {
    z-index: 101;     
    font-weight: bold;    
    width: 100%;
    border: 0;
    margin: 0 0 1em;    
    box-sizing: border-box;
    font-size: 1em;
    padding-top: 0em;
}

.closeloginbutton {
    z-index: 102; 
    position: absolute;
    right: 10px;
    top: 10px;
    min-width: 32px;
    min-height: 32px;
    width: 32px;
    height: 32px;
    background-image: url(./close-32.png);
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.closeloginbutton:hover {
    background-image: url(./close-32-hover.png);
}

/* For mobile phones: */
@media only screen and (min-device-width: 0px) and (max-device-width: 767px) {
    #loginformcontainer {
        width: 90%;
        min-width: 90%;
        height: 90%;        
        padding: 2%;        
    }
}

/* For tablets: */
@media only screen and (min-device-width: 768px) and (max-device-width: 1199px) {
    
    #loginformcontainer {        
        width: 90%;
        min-width: 90%;
        height: 90%;        
        padding: 2%;   
    }    
}

/* For laptops: */
@media only screen and (min-device-width: 1200px) {
    #loginformcontainer {
        width: 500px;
        min-width: 500px;
        height: auto;        
        padding: 50px;
    }      
}

