/*
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 : 13/Jan/2016, 14:15:02
    Author     : Pedro Rodrigues
*/
.loginBox{
    width: 200px; 
    height: 300px; 
    float: right; 
    margin-right: 0px;
    margin-top: 2px;
    padding: 10px;
    position: relative;
    display: none;
    z-index: 10000;
    background-color: #fff;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -webkit-box-shadow: 0 6px 15px #b2b2b2;
    box-shadow: 0 6px 15px #b2b2b2;
    -moz-box-shadow: 0 6px 15px #b2b2b2;    
}
.loginformBox {
    width: 100%; 
    height: auto; 
    float: left;
}
.loginformBox > form > label > p{
    margin-bottom: 5px;
    text-indent: 3px;
}
.loginformBox > form > input[type="text"], .loginformBox > form > input[type="password"]{
    width: 92%;
    float: left;
}
.loginformBox > form > input#capchaLoginId{
    width: 25% !important;
}
.loginSubmitBtn{
    width: 100%;
    height: 35px;
    float: left;
}

@media only screen and (max-width: 1023px){
    .loginBox{
        margin-right: -80px;
        margin-top: 45px;
    }

    
}
@media only screen and (max-width: 359px){
    .loginBox {
        margin-right: 0px;
        margin-top: 5px;
    }
    
}
