/*
 * style.css
 * styles for elements
 */

/* General */
html{ width: 100%; height: 100%; }
body{ width: 100%; height: 100%; font-weight: normal; font-size: 14px; font-family: FontAwesome,'Source Sans Pro',sans-serif; color: #222;}
*{ margin: 0; padding: 0;}
a, a:hover{ color: #222; text-decoration: none; }
:focus{ outline: none; }
.clear{ clear: both; }
img{ vertical-align: middle; }
.header{
    height: 50px;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 1000;
}
.logo{
    font-size: 20px;
    line-height: 30px;
}
.header_menu ul{
    text-align: right;
    margin-bottom: 0;
}
.header_menu ul{
    list-style: none;
}
.header_menu ul li{
    display: inline-block;
    padding: 5px 15px;
}
.header_menu ul li a{
    color: #08A0E1;
}
.header_menu ul li a:hover{
    text-decoration: underline;
}

.logo img{
    vertical-align: middle;
}
.company_logo{
    margin-top: 20px;
}
.company_name{
    font-size: 72px;
    margin-top: 0;
    font-weight: lighter;
}
.content{
    margin: auto;
    padding-top: 50px;
    min-height: calc(100% - 40px);
}
.login_main{
    background: #f7f7f7;
    width: 354px;
    max-width: 100%;
    padding: 40px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    margin: auto;
    margin-top: 60px;
    margin-bottom: 60px;
}
.playstore{
    width: 354px;
    max-width: 100%;
    margin: auto;
    margin-top: -40px;
    text-align: center;
    color: #777;
}
.playstore a{
    color: #777;
    line-height: 20px;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
}
.playstore a:hover{
    text-decoration: underline;
}

.playstore img {
    height: 20px;
    margin-left: 10px;
    vertical-align: -5px;
}

.login_main.without_margin{
    margin-top: auto;
    margin-bottom: auto;
}
.login_header{
    font-size: 20px;
    color: #666;
}

.company_header{
    font-size: 36px;
    font-weight: lighter;
    margin-top: 50px;
    margin-bottom: 50px;
}

.profile_pic{
    margin: auto;
    height: 70px;
    width: 70px;
    border-radius: 35px;
    overflow: hidden;
}
.input{
    margin-top: 20px;
}
.input .textbox{
    height: 44px;
    font-size: 16px;
    width: 100%;
    border: 1px solid #dfdfdf;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    padding: 0 8px;
    color: #404040;
    position: relative;
}
.input .textbox:hover{
    z-index: 3;
    border: 1px solid #999999;
}
.input .textbox:focus{
    z-index: 3;
    border: 1px solid #4d90fe;
}

.button{
    margin-top: 20px;
}
.button button{
    background: #2e8fda;
    color: #fff;
    border: none;
    font-size: 16px;
    box-sizing: border-box;
    border-radius: 3px;
    line-height: 30px;
    padding: 5px 10px;
    cursor: pointer;
    position: relative;
    width: 100%;
}
.button button:hover,.button button:focus{
    background: #1d7fca;
}
.button a{
    color: #08A0E1;
    display: block;
    text-align: right;
    margin-top: 5px;
}
.button a:hover,.button a:focus{
    text-decoration: underline;
}

.footer{
    text-align: center;
    background: #f1f1f1;
    border-top: 1px solid #eee;
    padding: 10px;
    height: 40px;
}
.footer a{
    color: #08A0E1;
}
.footer a:hover{
    text-decoration: underline;
}
.error{
    margin-top: 5px;
    color: #dd4b39;
}
.center{
    text-align: center;
}