﻿@charset "utf-8";

body {
    padding: 0px;
    margin: 0px;
    background-position: 50% 50%;
    background-color: rgb(210,211,213);
    background-image: url(../icon/arbolito.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    color: #80888F;
    font-family: Geneva, Arial, Helvetica, sans-serif;
    font-weight: 700;
}

.prompt {
    background-image: url('../icon/launcher-icon-4x.png');
    background-position-x: 1rem;
    background-position-y: 1.5rem;
    background-repeat: no-repeat;
    background-size: auto 40%;
    background-color: #ffffff;
    box-shadow: 0 20px 40px 0 rgba(91, 107, 174, 0.15);
    padding: 1.5rem 1rem 0.5rem 5rem;
    position: fixed;
    transition: all 0.5s ease-in-out;
    width: 100vw;
    z-index: 9;
}

    .prompt.show {
        transition-delay: 3s;
        bottom: 0;
        opacity: 1;
    }

    .prompt.hide {
        bottom: -100%;
        opacity: 0;
    }

.fixTitles {
    background-color: rgb(255,255,255);
    color: rgb(0,0,0);
}

.etiqueta {
    color: #fff;
    font-weight: bold;
    font-size: 12pt;
    text-shadow: black 0px 0px 4px;
}

.boton {
    font-size: 12pt;
    padding: 5px 10px 5px 10px;
    margin: 1px;
    color: #ffffff;
    background-color: #651fff; /*#707070;*/
    cursor: pointer;
    text-decoration: none;
    border: none;
}

    .boton:hover {
        background-color: #82b1ff; /*#a0a0a0;*/
    }

    .boton:active {
        background-color: #82b1ff; /*#a0a0a0;*/
    }

    .boton:disabled {
        background-color: #c0c0c0;
        color: #eeeeee;
        cursor: default;
    }

.botonGris {
    font-size: 12pt;
    padding: 5px 10px 5px 10px;
    margin: 1px;
    color: #ffffff;
    background-color: #A4B5A4; /*#707070;*/
    cursor: pointer;
    text-decoration: none;
    border: none;
}

    .botonGris:hover {
        background-color: rgb(141,177,226); /*#a0a0a0;*/
    }

    .botonGris:active {
        background-color: rgb(141,177,226); /*#a0a0a0;*/
    }

    .botonGris:disabled {
        background-color: #c0c0c0;
        color: #eeeeee;
        cursor: default;
    }

.botonAmarillo {
    font-size: 12pt;
    padding: 5px 10px 5px 10px;
    margin: 1px;
    color: #000000;
    background-color: #FFEB3B; /*#707070;*/
    cursor: pointer;
    text-decoration: none;
    border: none;
}

    .botonAmarillo:hover {
        background-color: #F57F17; /*#a0a0a0;*/
    }

    .botonAmarillo:active {
        background-color: #82b1ff; /*#a0a0a0;*/
    }

/* Login */
.container-box {
    width: 370px;
    height: 530px;
    background: #FFFFFF;
    color: #FFF;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 70px 30px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0,.5) 10px 10px 10px;
}

    .container-box .divlog {
        background: white;
        width: 190px;
        height: 190px;
        border: 2px solid #B4BDC6;
        position: absolute;
        top: -100px;
        left: calc(35% - 35px);
        display: block;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        text-align: center;
    }

.log {
    max-width: 180px;
    width: 100%;
    height: auto;
}

.container-box label {
    margin: 0;
    padding: 0;
    font-weight: bold;
    display: block;
}

.container-box input {
    width: 100%;
    margin-bottom: 20px;
}

.lblogo {
    color: #80888F;
    width: 100%;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 80px;
    font-weight: normal;
}

.txtlog {
    height: 35px;
    background: rgba(0,0,0,0);
    border: 0px;
    outline: 0px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.20);
    font-size: 14px;
    padding-left: 10px;
    color: #04955F;
}

.btnSubmint {
    border: none;
    outline: none;
    height: 40px;
    margin-top: 15px;
    background: #80888F;
    width: 100%;
    font-size: 18px;
    border-radius: 4px;
    color: #FFFFFF;
}

.btnSubmint:active {
    color: #FFFFFF;
    background: #80888F;
}