@import url(https://fonts.googleapis.com/css?family=Inter:400,800);
* { font-family: 'Inter' }
body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: rgb(26, 50, 79);
    background-color: white;
}
.bg-login {
    background: url(/images/bg-login.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.border-radius { border-radius: 0px !important }
.form-control:focus {
    outline: 0;
    color: #212529;
    background-color: #fff;
    box-shadow: none !important;
    border-color: rgba(26, 50, 79, 0.8) !important;
}
.btn-primary {
    border: none;
    outline: none;
    padding: 10px 0px;
    background-color: rgba(26, 50, 79, 0.8);
}
.btn-primary:hover {
    background-color: rgba(26, 50, 79, 1);
}
.nav-pills .nav-link {
    color: rgba(26, 50, 79, 0.2);
    border-radius: 0 !important;
    font-weight: bold;
    font-size: 1.8em;
    padding: 0;
    margin: 0;
}
.nav-pills .nav-link.active {
    border-bottom: 3px solid #000;
    color: rgba(26, 50, 79, 1);
    background-color: transparent !important;
}
.nav-pills:first-child .nav-link {
    margin-right: 1rem;
}