@font-face {
    font-family: 'Google Sans';
    src: url('../fonts/GoogleSans-Regular.eot');
    src: url('../fonts/GoogleSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GoogleSans-Regular.woff2') format('woff2'),
        url('../fonts/GoogleSans-Regular.woff') format('woff'),
        url('../fonts/GoogleSans-Regular.ttf') format('truetype'),
        url('../fonts/GoogleSans-Regular.svg#GoogleSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Google Sans';
    src: url('../fonts/GoogleSans-Bold.eot');
    src: url('../fonts/GoogleSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GoogleSans-Bold.woff2') format('woff2'),
        url('../fonts/GoogleSans-Bold.woff') format('woff'),
        url('../fonts/GoogleSans-Bold.ttf') format('truetype'),
        url('../fonts/GoogleSans-Bold.svg#GoogleSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}

*{ 
    margin: 0; 
    padding: 0; 
    border: 0; 
}

html,
body {
    font-family: 'Google Sans';
    height: 100%;
    color: #000;
}

main{
    background-color: #383645;
    height: 100%;
}

.container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#contenedor-login{
    width: 90%;
    max-width: 270px;
}

#contenedor-login form{
    width: 100%;
}

#logo{
    display: block;
    margin: 0 auto 35px;
    max-width: 235px;
    width: 100%;
}

input.form-control{
    border-radius: 0;
    border: 0;
    color: #333;
    display: block;
    margin-bottom: 10px;
    padding: 20px 15px;
    width: 100%;
    font-size: 17px;
}

input.form-control::-webkit-input-placeholder { /* Edge */
    color: #999;
    font-size: 17px;
}
  
input.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #999;
    font-size: 17px;
}
  
input.form-control::placeholder {
    color: #999;
    font-size: 17px;
}

.btn-primary{
    border-radius: 0;
    background-color: #6E5EC4;
    color: #fff;
    border: 0;
}

.btn-primary:hover{
    background-color: #4D43AA;
}

#sign-in{
    margin-bottom: 30px;
    font-size: 15px;
}

#sign-in a{
    color: #5FC1CB;
    text-decoration: underline;
}

#sign-in a:hover{
    color: #48509d;
}

#forgot{
    display: table;
    margin-top: 50px;
    width: 100%;
}

#forgot div{
    display: table-cell;
    width: 50%;
    text-align: center;
}

#forgot div a{
    color: #5FC1CB;
    text-decoration: underline;
    font-size: 13px;
}

#forgot div a:hover{
    color: #48509d;
}

#invalid-login{
    text-align: center;
    color: #f74931;
}