
.login-button {
    display: inline-flex;
    align-items: center;
    background-color: #0066cc;
    color: white;
    font-family: 'Titillium Web', sans-serif;
    font-size: 16px;
    font-weight: 400;
    height: 52px;
    padding: 11px 18px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
}

    .login-button:hover {
        background-color: #004a99;
    }

.login-button-icon img {
    height: 24px;
    margin-right: 10px;
}

.login-button-text {
    line-height: 24px;
}

.nav-tabs .nav-link {
    color: #0d6efd;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

    .nav-tabs .nav-link:hover {
        background-color: #e2e6ea;
    }

    .nav-tabs .nav-link.active {
        color: #fff;
        background-color: #0d6efd;
        border-color: #dee2e6 #dee2e6 #fff;
    }

    .nav-tabs .nav-link:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    }
