
/*CSS LOGIN*/


body{
    background-image: url(/IMG/login.jpg);
}

.container-login{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8%;
}

.row{
    background:  rgb(204, 204, 208);
    border: solid #d6d5d5;
    border-radius: 10px;
    padding-bottom: 150px;
    padding-left: 100px;
    padding-right: 100px;

}

.row h6{
    display: flex;
    justify-content: center;
    font-size: 30px;
}

.row small{
    font-size: 15px;
}

.row .inpus{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-top: 20px;
}

.inpus input{
    padding-top: 10px;
    padding-bottom: 10px;
    border: solid #d6d5d5;
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 150px;
}

.row .btn-l{
    padding-top: 30px;
    padding-left: 20px;
}

.row .btn-l button{
    background: rgb(8, 132, 241);
    border: solid 1px #aaa9a9;
    padding: 10px;
    border-radius: 5px;
}

.row .btn-l button:hover{
    color: #a9a8a8;
    background:rgb(12, 99, 176);
}

.row .btn-l button a {
    text-decoration: none;
}

/*CLASS INICIO*/
.inicio{
    padding-top: 70px;
    display: flex;
    justify-content: center;
}

