/*
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 : Dec 12, 2016, 2:35:36 PM
    Author     : sgarcia
*/
.container {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #EEEEEE;
}

.login-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login-main img {
    margin-left: 70px;
    margin-right: 70px;
    margin-bottom: 40px;
    width: 260px;
}

.login-card {
    width: 400px;
    margin: auto;
    border-radius: 2px;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.login-card form {
    padding: 24px 16px;
}

.input-container {
    width: 260px;
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 8px;
}

.input-label-text {
    font-size: 14px;
    color: #BDBDBD;
}

input {
    font-size: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 260px;
    border-radius: 0px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid BDBDBD;
}

input:focus {
    outline: none;
    border-bottom: 2px solid #2196F3;
}

.login-btn {
    height: 34px;
    width: 260px;
    border: none;
    border-radius: 0;
    background-color: #2196F3;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    display: block;
    padding: 0;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4px;
    cursor: pointer;
}