﻿.body {
    background-color:#d3d3d3;
    /*IMPORTANTE*/
    /*display: flex;
    justify-content: center;
    align-items: center;*/
}

.card {
    position: absolute;
    top: 30%; /* Buscamos el centro horizontal (relativo) del navegador */
    left: 50%; /* Buscamos el centro vertical (relativo) del navegador */
    width: 520px; /* Definimos el ancho del objeto a centrar */
    height: 480px; /* Definimos el alto del objeto a centrar */
    margin-top: -200px; /* Restamos la mitad de la altura del objeto con un margin-top */
    margin-left: -300px; /* Restamos la mitad de la anchura del objeto con un margin-left */
    background-color: #ffffff; /*#292727*/
    border-radius: 7px;
    /*box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);*/
    color: #ab7729; /*#fff;*/
    font-size: 16pt;
    padding: 2px 10px;
    font-family: Arial, Tahoma;
}

.btnlogin {
    width: 200px;
    height: 30px;
    font-size: 14pt;
    background: #215968 /*#fff*/;
    color: #ffffff /*#dfaa28*/;
    border-color: #fff;
    border-radius: 5px;
    border: none;
}

input {
    /*border:none;*/
    background-color: #f9f7f7/*#fff*/;
    font-size: 12pt;
    margin: 5px;
    padding: 5px;
    border-radius: 3px;
}

.lgfooter {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    color: #5d5b5b;
    text-align: center;
    padding: 15px 0 30px 0;
    font-size: 12px;
    font-family: Tahoma,Arial;
}

ul li {
    list-style-type: none;
    font-size: 11pt; 
    font-weight: bold;
}

.title {
    font-size: 27px;
    font-weight: bold;
}