﻿@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Regular.ttf");
}

body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Roboto, Arial, sans-serif;
    display: inline-block;
}

/*IE LEFT CONTAINER*/
*html .index_left{
    height: 1000px;
}

.index_left {
    width: 70%;
    height: 100%;
    float: left;
    background-image: url('../graficos/index_bkg.jpg');
    background-size: cover;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../graficos/index_bkg.jpg', sizingMethod='scale');
    overflow: hidden;
}

.logo1 {
    position: relative;
    height: 100%;
}

#erp1 {
    position: absolute;
    left: 50%;
    bottom: 30px;
    width: 200px;
    height: auto;
    transform: translateX(-50%);
}

.index_right {
    width: 30%;
    height: 100%;
    float: right;
}

.login_content {
    width: 80%;
    margin: auto;
    margin-top: 25%;
    text-align: center;
    position: relative;
}

/*IE LOGIN CONTENT*/
*html .login_content {
    width: 100%;
    margin: 40% 5% 0 5%;
}

#login_logo {
    width: 40%;
    height: auto;
}


.login_form{
    text-align: center;
    width: 80%;
    margin: auto;
}

.log_labels{
    display: block;
    text-align: left;
    color: #666;
    font-size: 13px;
    margin-bottom: 4px;
}

.log_inp {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    outline: none;
    padding: 8px 0 10px 0;
    margin-bottom: 8%;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

/* IE INPUTS */

*html .log_inp{
    padding: 0;
    height: 30px;
    line-height: 25px;
}

    .log_inp:focus {
        border-bottom: 2px solid #3a6ad4;
    }


#log_btn {
    cursor: pointer;
    padding: 12px 8px;
    width: 100%;
    background-color: #3a6ad4;
    color: #FFF;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    outline: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(58, 106, 212, 0.3);
}

#log_btn:hover {
    background-color: #2d55b0;
    box-shadow: 0 4px 12px rgba(58, 106, 212, 0.5);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

#footer {
    width: 70%;
    margin: auto;
    text-align: center;
    padding-top: 20px;
    color: #999;
    font-size: 12px;
}

/*IE FOOTER*/

*html #footer {
    margin: 10% 0 0 20%;
}