
body{
    font-size: 18px;
    height: 100vh;
    background-image: url("Imagenes/Fondo.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #ffffff;
}

.table-striped thead tr{
    background-color: #ffffff;
}

.table-striped tbody tr:nth-of-type(even){
    background-color: #ffffff;
}

.alert{
    font-size: 12px;
    margin: 15px 0px 15px 0px;
}

.logo{
    margin: 10px 0 10px 0;
    width: 40%;
}

.modal-footer{
    flex-wrap: nowrap;
}

.titulo{
    font-size: 20px;
    font-weight: bold;
    margin: 0px;
}

.container{
    display: flex;
    align-items: center;
    flex-direction: column; 
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}

.contenido{
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    width: 500px;
    position: relative;
    -webkit-box-shadow: 0 1px 5px 0px #d3d3d3;
    box-shadow: 0 1px 5px 0px #d3d3d3;
    text-align: center;
}

@media only screen and (max-width: 600px){
    .contenido{
        font-size: 15px;
        width: 350px;
    }

    .titulo{
        font-size: 18px;
        font-weight: bold;
        margin: 0px;
    }
}

.footer{
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}

.fadeInDown{
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

input{
    width: 100%;
    background-color: transparent;
    color: black;
    outline: none;
    border: none;
    border-bottom: solid #bcbcbc 1px;
    margin: 10px 0 10px 0;
}

#login{
    width: auto;
    background-color: #97bf0d;
    border: none;
    color: white;
    padding: 15px 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 1px 5px 0px #d3d3d3;
    box-shadow: 0 1px 5px 0px #d3d3d3;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 5px;
}

#usuario{
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #ffffff;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

#contrasena{
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #ffffff;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

input placeholder{
    color: #bcbcbc;
}

input:focus::-webkit-input-placeholder,
input:hover::-webkit-input-placeholder{
    color: #97bf0d;
}

input:focus,
input:hover{
    border-bottom: solid #97bf0d 1px;
}

*:focus{
    outline: none;
}