/*
Copyright 2018 JoinFaces.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

         http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/* 
        Created on : 29-01-2018, 16:21:49
        Author     : luis
*/


@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,500,500i,700,700i');

body {
    font-family: 'Roboto', sans-serif;
}

.login-page{
    background-color: #FFFFFF;
    background-image: url('../resources/images/login.png');
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
/* 
        .login-logo img{
                width: 80%;
                max-width: 370px !important;
        }

        .login-footer {
                font-size: 12px; 
                color: grey; 
                text-align: center;
        }

        @media (max-width: 1536px){
                .login-box {
                        width: 40%;
                        margin-top: 100px;
                }
        } */

.login-box {
    width: 40%;
    margin: 0;
    max-width: 550px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.login-box-body {
    border-radius: 10px;
    border: 1px solid #f3f3f3;
    padding: 30px 20px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.2);
    background: #fbfbfb !important;
}

@media (max-width: 768px) {
    .login-box {
        width: 60%;
    }
}

@media (max-width: 425px) {
    .login-box {
        width: 80%;
    }
}

@media (max-width: 375px) {
    .login-box {
        width: 90%;
    }
}

.login-logo {
    margin-bottom: 15px;
}

.login-logo img{
    width: 100%;
    max-width: 250px !important;
}

.login-footer,
.login-footer a {
    font-size: 10px;
    margin-top: 10px;
    text-align: center;
}

.login-footer a {
    color: #e23a28;
}