*{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    overflow-x: hidden;
    background-attachment:fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(to bottom, #F8F8FF, #F7DBEF, #9A51FB);

}

:root {
    --primary-color: #C6C5B9;
    --bg-color: rgba(198,197,185, .2);
    --bg-hover-color: rgba(198,197,185, .05);
    --table-td-first-color: #bcd2ee;
    --table-td-first-bg-color: rgba(188,210,238, .05);
    --red-color: #D72638;
}

/*------------------ login ------------------*/


.card{
    background-color: rgba(255, 255, 255,.3);
    border-radius: 5px;
    width: 20%;
    margin: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 .125rem .375rem 0 rgba(161,172,184,.12);
    padding: 50px;
}

.card-header{
    margin: auto auto 30px auto;
    text-align: center;
}

.card-body{
    text-align: center;
}

.card-body label{
    color: #1A004B;
    font-size: 16px;
}

.card-body input{
    width: 200px;
    outline: none;
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #1A004B;
    background-color: transparent;
    border-radius: 5px;
    margin-top: 5px;
    color: #1A004B;
}

.card-body .row{
    height: 80px
}

.card-body .btn-primary{
    margin-top: 30px;
    width: 245px;
    padding: 10px 30px;
    color: #1A004B;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 18px;
    border: none;
    background-image: linear-gradient(to bottom right, #FFB1AB, #FFCDCA, #C2F6B6, #3EFFEF, #00DDFF);
    font-family: "PT Sans", sans-serif;
}

#login:hover{
    background-image: none;
    background-color: #8A3AFE;
    color: #ffffff;
    cursor: pointer;
}

.card .invalid-feedback{
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 14px;
    background-color: #D72638;
    color: #ffffff;
    width: 100%;
    font-weight: 300;
    display: block;
    text-align: center;
    padding: 10px 0;
}


/* -------- NAV BAR -------- */


.nav-bar{
    background-image: linear-gradient(to left, #FFE6EE, #802BFF);
    height: 28px;
    width: 100%;
    display: inline-block;
    font-size: 18px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    padding: 35px 30px;
    position: fixed;
    top: 0;
    z-index: 9;
}

.nav-bar .name{
    color: #ffffff;
    margin: -10px 0 0 0;
    text-decoration: none;
}

.nav-bar i{
    font-size: 24px;
    color: #1A004B;
    margin: 0 10px;
}

.nav-bar i:hover{
    color: #ffffff;
    cursor: pointer;
}

.nav-bar .right{
    float: right;
    margin-right: 5%;
}


/* -------- TABLE -------- */


.table{
    width: 90%;
    margin: 100px auto 50px auto;
}
